Packages

case class Position[P](x: P, y: P)(implicit evidence$1: Numeric[P]) extends Product with Serializable

Generic base class Position, holding the two ordinates

P

Numeric type

x

The abscissa

y

The ordinate

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Position
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Position(x: P, y: P)(implicit arg0: Numeric[P])

    x

    The abscissa

    y

    The ordinate

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *(factor: P): Position[P]

    Binaire multiply operator e,g.

    Binaire multiply operator e,g. (a, b) * n=> (a * n, b * n)

  4. def *(p: Position[P]): Position[P]

    Binaire multiply operator for two coordinates, multplies each of the ordinate

  5. def +(term: P): Position[P]

    Binaire add operator e,g.

    Binaire add operator e,g. (a, b) + n => (a + n, b + n)

  6. def +(p: Position[P]): Position[P]

    Binaire add operator for two coordinates

  7. def -(term: P): Position[P]

    Binaire subtract operator e,g.

    Binaire subtract operator e,g. (a, b) - n => (a - n, b - n)

  8. def -(p: Position[P]): Position[P]

    Binaire subtract operator for the difference of two coordinates

  9. def ->[B](y: B): (Position[P], B)
    Implicit
    This member is added by an implicit conversion from Position[P] to ArrowAssoc[Position[P]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  10. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def areTouching(posB: Position[P], side: P): Boolean

    Checks if two squares intersects

    Checks if two squares intersects

    posB

    Position of the second square

    side

    side of both two squares

    returns

    True if a intersection occurs

  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def ensuring(cond: (Position[P]) ⇒ Boolean, msg: ⇒ Any): Position[P]
    Implicit
    This member is added by an implicit conversion from Position[P] to Ensuring[Position[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (Position[P]) ⇒ Boolean): Position[P]
    Implicit
    This member is added by an implicit conversion from Position[P] to Ensuring[Position[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: ⇒ Any): Position[P]
    Implicit
    This member is added by an implicit conversion from Position[P] to Ensuring[Position[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): Position[P]
    Implicit
    This member is added by an implicit conversion from Position[P] to Ensuring[Position[P]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Position[P] to StringFormat[Position[P]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def isValidPositionEl(canvasPos: Position[P], side: P): Boolean

    Check if the square area is within the rectangle area

    Check if the square area is within the rectangle area

    canvasPos

    Position of the second square

    side

    side of both two squares

    returns

    False if a square out of bound

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  27. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. val x: P
  32. val y: P
  33. def [B](y: B): (Position[P], B)
    Implicit
    This member is added by an implicit conversion from Position[P] to ArrowAssoc[Position[P]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Position[P] to any2stringadd[Position[P]] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (position: any2stringadd[Position[P]]).+(other)
    Definition Classes
    any2stringadd

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Position[P] to any2stringadd[Position[P]]

Inherited by implicit conversion StringFormat from Position[P] to StringFormat[Position[P]]

Inherited by implicit conversion Ensuring from Position[P] to Ensuring[Position[P]]

Inherited by implicit conversion ArrowAssoc from Position[P] to ArrowAssoc[Position[P]]

Ungrouped