コード例 #1
0
ファイル: Vector.java プロジェクト: CrowsOfWar/AvatarMod
 /**
  * <strong>Assuming</strong> this vector represents spherical coordinates (in radians), returns a
  * unit vector in Cartesian space which has the rotations of this vector.
  *
  * <p>Does not modify this vector.
  */
 public Vector toRectangular() {
   return Vector.fromDirection(this);
 }