예제 #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));
 }