예제 #1
0
 public bool Intersects(Circle circle)
 {
     return(Intersections.Intersect(this, circle));
 }
예제 #2
0
 public bool Intersects(Triangle triangle)
 {
     return(Intersections.Intersect(this, triangle));
 }
예제 #3
0
 public bool Intersects(Line line)
 {
     return(Intersections.Intersect(this, line));
 }
예제 #4
0
        //  当たり判定

        public bool Intersects(Rectangle rect)
        {
            return(Intersections.Intersect(this, rect));
        }