org.simtk.geometry3d
Interface MathMatrix
- All Known Subinterfaces:
- HomogeneousTransform, Matrix3D, MutableHomogeneousTransform, MutableMathMatrix, MutableMatrix3D
- All Known Implementing Classes:
- HomogeneousTransformClass, JamaMatrix, MathMatrixClass, Matrix3DClass
public interface MathMatrix
getRowCount
int getRowCount()
getColumnCount
int getColumnCount()
get
double get(int i,
int j)
transpose
MathMatrix transpose()
plus
MathMatrix plus(MathMatrix m2)
minus
MathMatrix minus(MathMatrix m2)
times
MathMatrix times(double d)
times
MathVector times(MathVector v)
times
MathMatrix times(MathMatrix m2)
trace
double trace()
getDiagonal
MathVector getDiagonal()
getRow
MathVector getRow(int i)
getColumn
MathVector getColumn(int j)