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.

Constructor Index

 o ScaleMatrix()
Construct a matrix initialized to the identity matrix.
 o ScaleMatrix(double, double, double)
Construct a matrix which will scale a vector.
 o ScaleMatrix(String, String, double, double, double)
Construct a named matrix which will scale a vector.
 o ScaleMatrix(Vector3D)
Construct a matrix which will scale a vector.
 o ScaleMatrix(String, Vector3D)
Construct a named matrix which will scale a vector.

Constructors

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