HCenOrSide

ostrat.prid.phex.HCenOrSide
See theHCenOrSide companion object
trait HCenOrSide extends HNotVert with TCenOrSide

Common trait for hex centre and hex side coordinate. The position of these coordinates is proportional, unlike the Hex vertices positions.

Attributes

Companion:
object
Graph
Supertypes
trait HNotVert
trait HCoord
trait Comparable[HCoord]
trait TCoord
trait Int2Elem
trait IntNElem
trait SpecialT
trait Show2[Int, Int]
trait TypeStr2[Int, Int]
trait TypeStrN
trait ShowN
trait ShowDec
trait Show
trait TypeStr
trait Point
class Object
trait Matchable
class Any
Known subtypes
class HCen
class HSide

Members list

Concise view

Type members

Inherited types

override type LineSegT = LineSegHC

The type of LineSegLike that this Point can start or ends.

The type of LineSegLike that this Point can start or ends.

Attributes

Inherited from:
HCoord
override type ThisT = HCoord

The type of this point for the purposes of LineSegT. May not be the final type.

The type of this point for the purposes of LineSegT. May not be the final type.

Attributes

Inherited from:
HCoord

Value members

Inherited methods

Attributes

Inherited from:
Ordered

Attributes

Inherited from:
Ordered

Attributes

Inherited from:
Ordered

Attributes

Inherited from:
Ordered
def c: Int

Column number for the coordinate of a tile grid.

Column number for the coordinate of a tile grid.

Attributes

Inherited from:
TCoord
def canEqual(a: Any): Boolean

Attributes

Inherited from:
HCoord
override def compare(that: HCoord): Int

Attributes

Definition Classes
Inherited from:
HCoord

Attributes

Inherited from:
Ordered
def el1Show(style: ShowStyle, maxPlaces: Int): String

Attributes

Inherited from:
Show2
def el2Show(style: ShowStyle, maxPlaces: Int): String

Attributes

Inherited from:
Show2

A StrArr Arr of the element type names of this Show Product class.

A StrArr Arr of the element type names of this Show Product class.

Attributes

Inherited from:
Show2
override def equals(obj: Any): Boolean

Compares the receiver object (this) with the argument object (that) for equivalence.

Compares the receiver object (this) with the argument object (that) for equivalence.

Any implementation of this method should be an equivalence relation:

  • It is reflexive: for any instance x of type Any, x.equals(x) should return true.
  • It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.
  • It is transitive: for any instances x, y, and z of type Any if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode to ensure that objects which are "equal" (o1.equals(o2) returns true) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)).

Attributes

that

the object to compare against this object for equality.

Returns:

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
HCoord -> Any
Inherited from:
HCoord
override def hashCode: Int

Calculate a hash code value for the object.

Calculate a hash code value for the object.

The default hashing algorithm is platform dependent.

Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

Attributes

Returns:

the hash code value for this object.

Definition Classes
HCoord -> Any
Inherited from:
HCoord
final override def int1: Int

Attributes

Definition Classes
Inherited from:
ShowElemInt2
final override def int2: Int

Attributes

Definition Classes
Inherited from:
ShowElemInt2
override def intForeach(f: Int => Unit): Unit

Performs the side effecting function on each Double in this Product element.

Performs the side effecting function on each Double in this Product element.

Attributes

Definition Classes
Inherited from:
Int2Elem

Attributes

Inherited from:
HCoord
override def lineSegFrom(startPt: HCoord): LineSegHC

LinSegHC from the parameter HCoord to this HCoord.

LinSegHC from the parameter HCoord to this HCoord.

Attributes

Definition Classes
Inherited from:
HCoord
override def lineSegTo(endPt: HCoord): LineSegHC

LineSegHC from this HCoord to the parameter HCoord.

LineSegHC from this HCoord to the parameter HCoord.

Attributes

Definition Classes
Inherited from:
HCoord
override def name1: String

1st parameter name.

1st parameter name.

Attributes

Definition Classes
Inherited from:
TCoord
override def name2: String

2nd parameter name.

2nd parameter name.

Attributes

Definition Classes
Inherited from:
TCoord
override def numParams: Int

Number of parameter constituents of this class.

Number of parameter constituents of this class.

Attributes

Definition Classes
Inherited from:
TypeStr2
override def opt1: Option[A1]

The optional default value for parameter 1.

The optional default value for parameter 1.

Attributes

Definition Classes
Inherited from:
Show2
override def opt2: Option[A2]

The optional default value for parameter 2.

The optional default value for parameter 2.

Attributes

Definition Classes
Inherited from:
Show2
override def paramNames: StrArr

Sequence of the names of parameter constituents of this class.

Sequence of the names of parameter constituents of this class.

Attributes

Definition Classes
Inherited from:
Show2

Attributes

Inherited from:
TCoord
def r: Int

Row number for the coordinate of a tile grid.

Row number for the coordinate of a tile grid.

Attributes

Inherited from:
TCoord

Attributes

Inherited from:
TCoord

Attributes

Inherited from:
TCoord
override def show(style: ShowStyle): String

Intended to be a multiple parameter comprehensive Show method. Intended to be paralleled by showT method on ShowT type class instances.

Intended to be a multiple parameter comprehensive Show method. Intended to be paralleled by showT method on ShowT type class instances.

Attributes

Definition Classes
Inherited from:
ShowN
override def show1: Int

Element 1 of this Show 2 element product.

Element 1 of this Show 2 element product.

Attributes

Definition Classes
Inherited from:
TCoord
override def show2: Int

Element 2 of this Show 2 element product.

Element 2 of this Show 2 element product.

Attributes

Definition Classes
Inherited from:
TCoord
override def showDec(style: ShowStyle, maxPlaces: Int, minPlaces: Int): String

Intended to be a multiple parameter comprehensive Show method. Intended to be paralleled by showT method on ShowT type class instances.

Intended to be a multiple parameter comprehensive Show method. Intended to be paralleled by showT method on ShowT type class instances.

Attributes

Definition Classes
Inherited from:
ShowN
def showDec(style: ShowStyle, maxPlaces: Int): String

Intended to be a multiple parameter comprehensive Show method. Intended to be paralleled by showT method on ShowT type class instances.

Intended to be a multiple parameter comprehensive Show method. Intended to be paralleled by showT method on ShowT type class instances.

Attributes

Inherited from:
Show
def showElemStrDecs(way: ShowStyle, decimalPlaces: Int): StrArr

A StrArr Arr collection of the show methods return values of the elements of this Show Product class.

A StrArr Arr collection of the show methods return values of the elements of this Show Product class.

Attributes

Inherited from:
Show2

Attributes

Inherited from:
ShowN
def showSemisNameDecs(maxPlaces: Int, minPlaces: Int): String

Attributes

Inherited from:
ShowN

A StrArr Arr collection of the show methods return values of the elements of this Show Product class.

A StrArr Arr collection of the show methods return values of the elements of this Show Product class.

Attributes

Inherited from:
ShowN
override def str: String

The most basic Show method, paralleling the strT method on ShowT type class instances.

The most basic Show method, paralleling the strT method on ShowT type class instances.

Attributes

Definition Classes
Inherited from:
Show2

Show with decimal precision of 0 places.

Show with decimal precision of 0 places.

Attributes

Inherited from:
ShowDec

Show with decimal precision of 1 place padding with a zero if necessary.

Show with decimal precision of 1 place padding with a zero if necessary.

Attributes

Inherited from:
ShowDec

Show with decimal precision of 2 places padding with zeros if necessary.

Show with decimal precision of 2 places padding with zeros if necessary.

Attributes

Inherited from:
ShowDec

Show with decimal precision of 3 places padding with zeros if necessary.

Show with decimal precision of 3 places padding with zeros if necessary.

Attributes

Inherited from:
ShowDec
def subR(rDelta: Int): HCoord

Attributes

Inherited from:
HCoord
final override def syntaxDepth: Int

Attributes

Definition Classes
Inherited from:
ShowElemInt2
def toPt2(implicit grider: HGridSys): Pt2

Uses the implicit HGridSysFlat to convert to Pt2.

Uses the implicit HGridSysFlat to convert to Pt2.

Attributes

Inherited from:
HCoord
override def toPt2Reg: Pt2

Attributes

Definition Classes
Inherited from:
HNotVert
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns:

a string representation of the object.

Definition Classes
Show -> Any
Inherited from:
Show
override def toVecReg: Vec2

Attributes

Definition Classes
Inherited from:
HNotVert

The RSON type of T. This the only data that a ShowT instance requires, that can't be implemented through delegation to an object of type Show.

The RSON type of T. This the only data that a ShowT instance requires, that can't be implemented through delegation to an object of type Show.

Attributes

Inherited from:
TCoord
def view(pxScale: Double): HGView

Attributes

Inherited from:
HCoord

Implicits

Inherited implicits

final implicit override def showT1: ShowT[Int]

The ShowT type class instance for the 1st element of this 2 element product.

The ShowT type class instance for the 1st element of this 2 element product.

Attributes

Definition Classes
Inherited from:
ShowElemInt2
final implicit override def showT2: ShowT[Int]

The ShowT type class instance for the 2nd element of this 2 element product.

The ShowT type class instance for the 2nd element of this 2 element product.

Attributes

Definition Classes
Inherited from:
ShowElemInt2