correct the javadoc of toString() methods (5 files in com.jme3.math)
This commit is contained in:
parent
ee910859ac
commit
1e7c95cbb8
@ -1152,12 +1152,16 @@ public final class Matrix3f implements Savable, Cloneable, java.io.Serializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>toString</code> returns the string representation of this object.
|
* <code>toString</code> returns a string representation of this matrix.
|
||||||
* It is in a format of a 3x3 matrix. For example, an identity matrix would
|
* For example, an identity matrix would be represented by:
|
||||||
* be represented by the following string. com.jme.math.Matrix3f <br>[<br>
|
* <pre>
|
||||||
* 1.0 0.0 0.0 <br>
|
* Matrix3f
|
||||||
* 0.0 1.0 0.0 <br>
|
* [
|
||||||
* 0.0 0.0 1.0 <br>]<br>
|
* 1.0 0.0 0.0
|
||||||
|
* 0.0 1.0 0.0
|
||||||
|
* 0.0 0.0 1.0
|
||||||
|
* ]
|
||||||
|
* <pre>
|
||||||
*
|
*
|
||||||
* @return the string representation of this object.
|
* @return the string representation of this object.
|
||||||
*/
|
*/
|
||||||
|
@ -2231,13 +2231,17 @@ public final class Matrix4f implements Savable, Cloneable, java.io.Serializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>toString</code> returns the string representation of this object.
|
* <code>toString</code> returns a string representation of this matrix.
|
||||||
* It is in a format of a 4x4 matrix. For example, an identity matrix would
|
* For example, an identity matrix would be represented by:
|
||||||
* be represented by the following string. com.jme.math.Matrix3f <br>[<br>
|
* <pre>
|
||||||
* 1.0 0.0 0.0 0.0 <br>
|
* Matrix4f
|
||||||
* 0.0 1.0 0.0 0.0 <br>
|
* [
|
||||||
* 0.0 0.0 1.0 0.0 <br>
|
* 1.0 0.0 0.0 0.0
|
||||||
* 0.0 0.0 0.0 1.0 <br>]<br>
|
* 0.0 1.0 0.0 0.0
|
||||||
|
* 0.0 0.0 1.0 0.0
|
||||||
|
* 0.0 0.0 0.0 1.0
|
||||||
|
* ]
|
||||||
|
* </pre>
|
||||||
*
|
*
|
||||||
* @return the string representation of this object.
|
* @return the string representation of this object.
|
||||||
*/
|
*/
|
||||||
|
@ -280,11 +280,10 @@ public class Plane implements Savable, Cloneable, java.io.Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>toString</code> returns a string that represents the string
|
* <code>toString</code> returns a string representation of this plane.
|
||||||
* representation of this plane. It represents the normal as a
|
* It represents the normal as a <code>Vector3f</code>, so the format is:
|
||||||
* <code>Vector3f</code> object, so the format is the following:
|
*
|
||||||
* com.jme.math.Plane [Normal: org.jme.math.Vector3f [X=XX.XXXX, Y=YY.YYYY,
|
* Plane [Normal: (X.XXXX, Y.YYYY, Z.ZZZZ) - Constant: C.CCCC]
|
||||||
* Z=ZZ.ZZZZ] - Constant: CC.CCCCC]
|
|
||||||
*
|
*
|
||||||
* @return the string representation of this plane.
|
* @return the string representation of this plane.
|
||||||
*/
|
*/
|
||||||
|
@ -724,9 +724,10 @@ public final class Vector2f implements Savable, Cloneable, java.io.Serializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>toString</code> returns the string representation of this vector
|
* <code>toString</code> returns a string representation of this vector.
|
||||||
* object. The format of the string is such: com.jme.math.Vector2f
|
* The format is:
|
||||||
* [X=XX.XXXX, Y=YY.YYYY]
|
*
|
||||||
|
* (XX.XXXX, YY.YYYY)
|
||||||
*
|
*
|
||||||
* @return the string representation of this vector.
|
* @return the string representation of this vector.
|
||||||
*/
|
*/
|
||||||
|
@ -1015,10 +1015,10 @@ public final class Vector3f implements Savable, Cloneable, java.io.Serializable
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* <code>toString</code> returns the string representation of this vector.
|
* <code>toString</code> returns a string representation of this vector.
|
||||||
* The format is:
|
* The format is:
|
||||||
*
|
*
|
||||||
* org.jme.math.Vector3f [X=XX.XXXX, Y=YY.YYYY, Z=ZZ.ZZZZ]
|
* (XX.XXXX, YY.YYYY, ZZ.ZZZZ)
|
||||||
*
|
*
|
||||||
* @return the string representation of this vector.
|
* @return the string representation of this vector.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user