예제 #1
0
파일: Shape.cs 프로젝트: safawu/project2006
 public virtual bool IsIntersectWithShape(Shape shape)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public virtual bool IsIntersectWithShape(Shape shape)
 {
     return shape.IsIntersectWithShape(shape);
 }
예제 #3
0
파일: Shape.cs 프로젝트: safawu/project2006
 public override bool IsIntersectWithShape(Shape shape)
 {
     throw new NotImplementedException();
 }