Javadoc fixes.
This commit is contained in:
@@ -18,7 +18,7 @@ public class Matrix3 implements IMatrix3, Serializable
|
||||
/** the identity matrix. */
|
||||
public static final Matrix3 IDENTITY = new Matrix3();
|
||||
|
||||
/** The values of the matrix. The names take the form {@mCOLROW}. */
|
||||
/** The values of the matrix. The names take the form {@code mCOLROW}. */
|
||||
public double m00, m10, m20;
|
||||
public double m01, m11, m21;
|
||||
public double m02, m12, m22;
|
||||
|
||||
@@ -21,7 +21,7 @@ public final class Matrix4 implements IMatrix4, Serializable
|
||||
/** An empty matrix array. */
|
||||
public static final Matrix4[] EMPTY_ARRAY = new Matrix4[0];
|
||||
|
||||
/** The values of the matrix. The names take the form {@mCOLROW}. */
|
||||
/** The values of the matrix. The names take the form {@code mCOLROW}. */
|
||||
public double m00, m10, m20, m30;
|
||||
public double m01, m11, m21, m31;
|
||||
public double m02, m12, m22, m32;
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
package pythagoras.d;
|
||||
|
||||
import pythagoras.util.NoninvertibleTransformException;
|
||||
|
||||
/**
|
||||
* Represents a geometric transform. Specialized implementations exist for identity, rigid body,
|
||||
* uniform, non-uniform, and affine transforms.
|
||||
|
||||
@@ -18,7 +18,7 @@ public class Matrix3 implements IMatrix3, Serializable
|
||||
/** the identity matrix. */
|
||||
public static final Matrix3 IDENTITY = new Matrix3();
|
||||
|
||||
/** The values of the matrix. The names take the form {@mCOLROW}. */
|
||||
/** The values of the matrix. The names take the form {@code mCOLROW}. */
|
||||
public float m00, m10, m20;
|
||||
public float m01, m11, m21;
|
||||
public float m02, m12, m22;
|
||||
|
||||
@@ -21,7 +21,7 @@ public final class Matrix4 implements IMatrix4, Serializable
|
||||
/** An empty matrix array. */
|
||||
public static final Matrix4[] EMPTY_ARRAY = new Matrix4[0];
|
||||
|
||||
/** The values of the matrix. The names take the form {@mCOLROW}. */
|
||||
/** The values of the matrix. The names take the form {@code mCOLROW}. */
|
||||
public float m00, m10, m20, m30;
|
||||
public float m01, m11, m21, m31;
|
||||
public float m02, m12, m22, m32;
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
|
||||
package pythagoras.f;
|
||||
|
||||
import pythagoras.util.NoninvertibleTransformException;
|
||||
|
||||
/**
|
||||
* Represents a geometric transform. Specialized implementations exist for identity, rigid body,
|
||||
* uniform, non-uniform, and affine transforms.
|
||||
|
||||
Reference in New Issue
Block a user