correct the javadoc of Matrix4f.set(float[][]) -- missing "not"!
This commit is contained in:
parent
06a8a056c1
commit
1fa283f06a
@ -516,7 +516,7 @@ public final class Matrix4f implements Savable, Cloneable, java.io.Serializable
|
|||||||
* @param matrix
|
* @param matrix
|
||||||
* the matrix to set the value to.
|
* the matrix to set the value to.
|
||||||
* @throws IllegalArgumentException
|
* @throws IllegalArgumentException
|
||||||
* if the array is 4x4
|
* if the array isn't 4x4
|
||||||
*/
|
*/
|
||||||
public void set(float[][] matrix) {
|
public void set(float[][] matrix) {
|
||||||
if (matrix.length != 4 || matrix[0].length != 4) {
|
if (matrix.length != 4 || matrix[0].length != 4) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user