コード例 #1
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Contains(Polygon poly)
 {
     return(Geom2D.Contains(ref this, poly));
 }
コード例 #2
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Contains(ref Quad quad)
 {
     return(Geom2D.Contains(ref this, ref quad));
 }
コード例 #3
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Contains(ref Rectangle rect)
 {
     return(Geom2D.Contains(ref this, ref rect));
 }
コード例 #4
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Contains(ref Triangle tri)
 {
     return(Geom2D.Contains(ref this, ref tri));
 }
コード例 #5
0
ファイル: Rectangle.cs プロジェクト: Rahil627/Rise
 public bool Contains(ref Circle circle)
 {
     return(Geom2D.Contains(ref this, ref circle));
 }