object Matrix3D extends Error with Serializable
The Matrix3D
companion object provides factory methods for creating vectors.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Matrix3D
- Serializable
- Serializable
- Error
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
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 thanRelation
- colPos1
the first column position
- colPos2
the second column position
- colPos3
the third column position
-
def
apply(a: MatriD): Matrix3D
Create a
Matrix3D
from a three-columnMatriD
.Create a
Matrix3D
from a three-columnMatriD
. FIX - try to avoid casting- a
the
MatriD
object
-
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
-
final
def
flaw(method: String, message: String): Unit
- Definition Classes
- Error