Ejemplo n.º 1
0
 /**
  * Returns a new vector that is a transformation of this vector around the given transformation
  *
  * @param transformation
  * @return
  */
 public Vector3 transform(Quaternion transformation) {
   return MathHelper.transform(this, transformation);
 }
Ejemplo n.º 2
0
 /**
  * Returns a new vector that is a transformation of this vector around the given transformation
  *
  * @param transformation
  * @return
  */
 public Vector3 transform(Matrix transformation) {
   return MathHelper.transform(this, transformation);
 }