object Matrix3D extends Error with Serializable

The Matrix3D companion object provides factory methods for creating vectors.

Linear Supertypes
Serializable, Serializable, Error, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Matrix3D
  2. Serializable
  3. Serializable
  4. Error
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply(table: Relation, colPos1: Int, colPos2: Int, colPos3: Int): Matrix3D

    Create a Matrix3D from the three columns in the given 'table'.

    Create a Matrix3D from the three columns in the given 'table'. FIX - make more general than Relation

    colPos1

    the first column position

    colPos2

    the second column position

    colPos3

    the third column position

  2. def apply(a: MatriD): Matrix3D

    Create a Matrix3D from a three-column MatriD.

    Create a Matrix3D from a three-column MatriD. FIX - try to avoid casting

    a

    the MatriD object

  3. def apply(x: Double, y: Double, z: Double): Matrix3D

    Create a Matrix3D from the three coordinates (one row, three columns).

    Create a Matrix3D from the three coordinates (one row, three columns).

    x

    the first coordinate

    y

    the second coordinate

    z

    the third coordinate

  4. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error