Javadoc fixes.

This commit is contained in:
Michael Bayne
2015-01-10 15:05:13 -08:00
parent b6821cd96b
commit fe48dd6440
6 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -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;
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -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;
+1 -1
View File
@@ -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.