예제 #1
0
 public abstract bool IntersectVisit(Shape other);
예제 #2
0
 public override bool IntersectVisit(Shape other)
 {
     return other.Intersect(this);
 }
예제 #3
0
 public ShapeObject(Shape collisionShape)
 {
     _collisionShape = collisionShape;
 }