예제 #1
0
 public static Vector2f transform(Matrix4f m, float x, float y) {
   tmpV.set(x, y);
   Matrix4f.transform(m, tmpV, tmpV);
   return new Vector2f(tmpV.x, tmpV.y);
 }