コード例 #1
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public Vector2 Project(Vector2 point)
 {
     return(Geom2D.Project(ref this, point));
 }
コード例 #2
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public void Project(Vector2 axis, out float min, out float max)
 {
     Geom2D.Project(ref this, axis, out min, out max);
 }