Added missing static methods to Matrix2f for consistency. Cleaned up handling of src == dest aliasing

This commit is contained in:
Elias Naur 2006-06-16 07:54:47 +00:00
parent effa3a297c
commit 48a52a67ce
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public class Matrix2f extends Matrix implements Serializable {
* @return this * @return this
*/ */
public Matrix2f load(Matrix2f src) { public Matrix2f load(Matrix2f src) {
return load(src); return load(src, this);
} }
/** /**