edu.utexas.cs.sdao.reyes.core

Matrix4

object Matrix4

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

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. val IDENTITY: Matrix4

    The identity matrix.

    The identity matrix. When any matrix M is right- or left-multiplied by the identity, M is returned.

  7. val ZERO: Matrix4

    The matrix composed of all zero values.

    The matrix composed of all zero values. When any matrix M is right- or left-multiplied by the zero matrix, the zero matrix is returned.

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

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

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

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

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

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. def lookAt(dir: Vector3): Matrix4

    Generates a matrix for the rotation caused by looking towards the specified direction from the origin.

    Generates a matrix for the rotation caused by looking towards the specified direction from the origin.

    See this Wikipedia article for the source of the equations.

    dir

    the direction to look at

    returns

    the rotation matrix

  17. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  20. def rotate(rads: Vector3): Matrix4

    Generates a matrix for an Euler rotation along the X, Y, then Z-axes, in that order.

    Generates a matrix for an Euler rotation along the X, Y, then Z-axes, in that order.

    rads

    a vector containing the rotation orders

    returns

    the rotation matrix

  21. def rotateX(rads: Float): Matrix4

    Performs a counter-clockwise rotation on the positive x-axis, i.

    Performs a counter-clockwise rotation on the positive x-axis, i.e. the rotation would appear to be counter-clockwise if looking in the direction of the negative x-axis.

    rads

    the angle to rotate

    returns

    the rotation matrix

  22. def rotateY(rads: Float): Matrix4

    Performs a counter-clockwise rotation on the positive y-axis, i.

    Performs a counter-clockwise rotation on the positive y-axis, i.e. the rotation would appear to be counter-clockwise if looking in the direction of the negative y-axis.

    rads

    the angle to rotate

    returns

    the rotation matrix

  23. def rotateZ(rads: Float): Matrix4

    Performs a counter-clockwise rotation on the positive z-axis, i.

    Performs a counter-clockwise rotation on the positive z-axis, i.e. the rotation would appear to be counter-clockwise if looking in the direction of the negative z-axis.

    rads

    the angle to rotate

    returns

    the rotation matrix

  24. def scale(factor: Vector3): Matrix4

    Generates a matrix for scaling with the specified factors.

    Generates a matrix for scaling with the specified factors.

    factor

    the factor to scale by along each axis

    returns

    the scaling matrix

  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  26. def toString(): String

    Definition Classes
    AnyRef → Any
  27. def translate(amount: Vector3): Matrix4

    Generates a matrix for translation in the specified distances.

    Generates a matrix for translation in the specified distances.

    amount

    the amount to translate along each axis

    returns

    the translation matrix

  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( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped