Class matrix3D.TranslateMatrix
All Packages Class Hierarchy This Package Previous Next Index
source
Class matrix3D.TranslateMatrix
java.lang.Object
|
+----matrix3D.Matrix3D
|
+----matrix3D.TranslateMatrix
- public class TranslateMatrix
- extends Matrix3D
A matrix which will translate a vector.
-
TranslateMatrix()
- Construct a matrix initialized to the identity matrix.
-
TranslateMatrix(double, double, double)
- Construct a matrix which will translate a vector.
-
TranslateMatrix(Vector3D)
- Construct a matrix which will translate a vector.
-
TranslateMatrix(String, String, Vector3D)
- Construct a named matrix with a specified purpose which will
translate a vector.
-
TranslateMatrix(String, Vector3D)
- Construct a named matrix which will translate a vector.
TranslateMatrix
public TranslateMatrix()
- Construct a matrix initialized to the identity matrix.
TranslateMatrix
public TranslateMatrix(double dx,
double dy,
double dz)
- Construct a matrix which will translate a vector. Translate by the
specified dx, dy and dz values.
TranslateMatrix
public TranslateMatrix(Vector3D v)
- Construct a matrix which will translate a vector. Translate by the
x, y and z values of the specified vector.
TranslateMatrix
public TranslateMatrix(String name,
String purpose,
Vector3D v)
- Construct a named matrix with a specified purpose which will
translate a vector. Translate
by the x, y and z values of the specified vector.
TranslateMatrix
public TranslateMatrix(String name,
Vector3D v)
- Construct a named matrix which will translate a vector. Translate
by the x, y and z values of the specified vector.
All Packages Class Hierarchy This Package Previous Next Index