コード例 #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;
 }