gov.nasa.worldwind.geom
Interface Matrix
- All Known Implementing Classes:
- Matrix4
public interface Matrix
The interface World Wind uses to interact with matrices. This interface can be implemented by an application's
own matrix classes. World Wind will then use instances of those classes for matrix manipulation.
add
Matrix add(Matrix m)
determinant
double determinant()
getEntries
double[] getEntries()
getInverse
Matrix getInverse()
getTranspose
Matrix getTranspose()
isOrthonormal
boolean isOrthonormal()
multiply
Matrix multiply(Matrix m)
rotate
Matrix rotate(Angle rotation,
double axisX,
double axisY,
double axisZ)
rotateX
Matrix rotateX(Angle rotation)
rotateY
Matrix rotateY(Angle rotation)
rotateZ
Matrix rotateZ(Angle rotation)
setToIdentity
Matrix setToIdentity()
transform
Point transform(Point p)
translate
Matrix translate(double x,
double y,
double z)
translate
Matrix translate(Point p)