/** * 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); }
/** * 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); }