Class/Object

scryetek.vecmath

Mat2

Related Docs: object Mat2 | package vecmath

Permalink

final class Mat2 extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Mat2
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Mat2()

    Permalink
    Annotations
    @inline()
  2. new Mat2(m00: Float, m01: Float, m10: Float, m11: Float)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *(m: Mat2): Mat2

    Permalink

    Returns the result of multiplying this matrix by another matrix.

    Returns the result of multiplying this matrix by another matrix.

    Annotations
    @inline()
  4. def *(s: Float): Mat2

    Permalink

    Returns a scaled copy of this matrix.

    Returns a scaled copy of this matrix.

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

    Permalink

    Transforms a 2-vector by this matrix.

    Transforms a 2-vector by this matrix.

    Annotations
    @inline()
  6. def +(m: Mat2): Mat2

    Permalink

    Adds two matrices

    Adds two matrices

    Annotations
    @inline()
  7. def -(m: Mat2): Mat2

    Permalink

    Adds two matrices

    Adds two matrices

    Annotations
    @inline()
  8. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def add(m: Mat2, out: Mat2 = this): Mat2

    Permalink

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

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

    Annotations
    @inline()
  10. def adjoint(out: Mat2): Mat2

    Permalink

    Puts the adjoint of this matrix into the specified out matrix.

    Puts the adjoint of this matrix into the specified out matrix.

    Annotations
    @inline()
  11. def adjointed: Mat2

    Permalink

    Returns the adjoint of this matrix.

    Returns the adjoint of this matrix.

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

    Permalink
    Definition Classes
    Any
  13. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def copy(m00: Float = m00, m01: Float = m01, m10: Float = m10, m11: Float = m11): Mat2

    Permalink
  15. def determinant: Float

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

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

    Permalink
    Definition Classes
    Mat2 → AnyRef → Any
  18. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    Mat2 → AnyRef → Any
  21. def invert(out: Mat2): Mat2

    Permalink
    Annotations
    @inline()
  22. def inverted: Mat2

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

    Permalink
    Definition Classes
    Any
  24. var m00: Float

    Permalink
  25. var m01: Float

    Permalink
  26. var m10: Float

    Permalink
  27. var m11: Float

    Permalink
  28. def mul(v: Vec2): Vec2

    Permalink

    Destructively transforms a 2-vector.

    Destructively transforms a 2-vector.

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

    Permalink

    Transforms a 2-vector into the specified out vector.

    Transforms a 2-vector into the specified out vector.

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

    Permalink
    Definition Classes
    AnyRef
  31. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. def postMultiply(m: Mat2, out: Mat2 = this): Mat2

    Permalink

    Copies the result of postmultiplying another matrix by this matrix into the specified output matrix.

    Copies the result of postmultiplying another matrix by this matrix into the specified output matrix.

    Annotations
    @inline()
  34. def preMultiply(m: Mat2, out: Mat2 = this): Mat2

    Permalink

    Copies the result of premultiplying another matrix by this matrix into the specified output matrix.

    Copies the result of premultiplying another matrix by this matrix into the specified output matrix.

    Annotations
    @inline()
  35. def scale(s: Float, out: Mat2 = this): Mat2

    Permalink
    Annotations
    @inline()
  36. def set(m: Mat2): Mat2

    Permalink
    Annotations
    @inline()
  37. def set(m00: Float = this.m00, m01: Float = this.m01, m10: Float = this.m10, m11: Float = this.m11): Mat2

    Permalink
    Annotations
    @inline()
  38. def sub(m: Mat2, out: Mat2 = this): Mat2

    Permalink

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

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

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

    Permalink
    Definition Classes
    AnyRef
  40. def toString(): String

    Permalink
    Definition Classes
    Mat2 → AnyRef → Any
  41. def transpose(out: Mat2 = this): Mat2

    Permalink

    Transposes this matrix into the specified out matrix.

    Transposes this matrix into the specified out matrix.

    Annotations
    @inline()
  42. def transposed: Mat2

    Permalink

    Returns the transpose of this matrix.

    Returns the transpose of this matrix.

    Annotations
    @inline()
  43. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped