Class matrix3D.ScaleMatrix
All Packages Class Hierarchy This Package Previous Next Index
source
Class matrix3D.ScaleMatrix
java.lang.Object
|
+----matrix3D.Matrix3D
|
+----matrix3D.ScaleMatrix
- public class ScaleMatrix
- extends Matrix3D
A matrix which will scale a vector.
-
ScaleMatrix()
- Construct a matrix initialized to the identity matrix.
-
ScaleMatrix(double, double, double)
- Construct a matrix which will scale a vector.
-
ScaleMatrix(String, String, double, double, double)
- Construct a named matrix which will scale a vector.
-
ScaleMatrix(Vector3D)
- Construct a matrix which will scale a vector.
-
ScaleMatrix(String, Vector3D)
- Construct a named matrix which will scale a vector.
ScaleMatrix
public ScaleMatrix()
- Construct a matrix initialized to the identity matrix.
ScaleMatrix
public ScaleMatrix(double sx,
double sy,
double sz)
- Construct a matrix which will scale a vector. Scale by the
specified sx, sy and sz values.
ScaleMatrix
public ScaleMatrix(String name,
String purpose,
double sx,
double sy,
double sz)
- Construct a named matrix which will scale a vector. Scale by the
specified sx, sy and sz values.
ScaleMatrix
public ScaleMatrix(Vector3D v)
- Construct a matrix which will scale a vector. Scale by the
x, y and z values of the specified vector.
ScaleMatrix
public ScaleMatrix(String name,
Vector3D v)
- Construct a named matrix which will scale a vector. Scale by the
x, y and z values of the specified vector.
All Packages Class Hierarchy This Package Previous Next Index