コード例 #1
0
ファイル: Vector3.java プロジェクト: retsrif/SpoutAPI
 /**
  * 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);
 }
コード例 #2
0
ファイル: Vector3.java プロジェクト: retsrif/SpoutAPI
 /**
  * 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);
 }