scryetek.vecmath

Mat2d

final class Mat2d extends AnyRef

Represents a 3x3 matrix with the bottom row set to 0 0 1.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Mat2d
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Mat2d()

    Annotations
    @inline()
  2. new Mat2d(m00: Float, m01: Float, m02: Float, m10: Float, m11: Float, m12: Float)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def *(m: Mat2d): Mat2d

    Annotations
    @inline()
  5. def *(v: Vec2): Vec2

    Annotations
    @inline()
  6. def *(s: Float): Mat2d

    Annotations
    @inline()
  7. def *(v: Vec3): Vec3

    Annotations
    @inline()
  8. def +(m: Mat2d): Mat2d

    Adds two matrices

    Adds two matrices

    Annotations
    @inline()
  9. def -(m: Mat2d): Mat2d

    Subtracts two matrices

    Subtracts two matrices

    Annotations
    @inline()
  10. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  12. def add(m: Mat2d, out: Mat2d = this): Mat2d

    Destructively add another matrix to this matrix into the output matrix.

    Destructively add another matrix to this matrix into the output matrix.

    Annotations
    @inline()
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def copy(m00: Float = m00, m01: Float = m01, m02: Float = m02, m10: Float = m10, m11: Float = m11, m12: Float = m12): Mat2d

  16. def determinant: Float

    Annotations
    @inline()
  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(o: Any): Boolean

    Definition Classes
    Mat2d → AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    Mat2d → AnyRef → Any
  22. def invert(out: Mat2d = this): Mat2d

    Annotations
    @inline()
  23. def inverted: Mat2d

    Annotations
    @inline()
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. var m00: Float

  26. var m01: Float

  27. var m02: Float

  28. var m10: Float

  29. var m11: Float

  30. var m12: Float

  31. def mul(v: Vec2): Vec2

    Annotations
    @inline()
  32. def mul(v: Vec2, out: Vec2): Vec2

    Annotations
    @inline()
  33. def mul(v: Vec3): Vec3

    Annotations
    @inline()
  34. def mul(v: Vec3, out: Vec3): Vec3

    Annotations
    @inline()
  35. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  36. final def notify(): Unit

    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  38. def postMultiply(m: Mat2d, out: Mat2d = this): Mat2d

    Annotations
    @inline()
  39. def preMultiply(m: Mat2d, out: Mat2d = this): Mat2d

    Annotations
    @inline()
  40. def scale(s: Float, out: Mat2d = this): Mat2d

    Annotations
    @inline()
  41. def set(m: Mat2d): Mat2d

  42. def set(m00: Float = m00, m01: Float = m01, m02: Float = m02, m10: Float = m10, m11: Float = m11, m12: Float = m12): Mat2d

    Annotations
    @inline()
  43. def sub(m: Mat2d, out: Mat2d = this): Mat2d

    Destructively add another matrix to this matrix into the output matrix.

    Destructively add another matrix to this matrix into the output matrix.

    Annotations
    @inline()
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def toMat3: Mat3

    Annotations
    @inline()
  46. def toMat4: Mat4

    Annotations
    @inline()
  47. def toString(): String

    Definition Classes
    Mat2d → AnyRef → Any
  48. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped