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.

Constructor Index

 o TranslateMatrix()
Construct a matrix initialized to the identity matrix.
 o TranslateMatrix(double, double, double)
Construct a matrix which will translate a vector.
 o TranslateMatrix(Vector3D)
Construct a matrix which will translate a vector.
 o TranslateMatrix(String, String, Vector3D)
Construct a named matrix with a specified purpose which will translate a vector.
 o TranslateMatrix(String, Vector3D)
Construct a named matrix which will translate a vector.

Constructors

 o TranslateMatrix
  public TranslateMatrix()
Construct a matrix initialized to the identity matrix.
 o 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.
 o 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.
 o 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.
 o 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