예제 #1
0
 public virtual int countIntersections(IObjectsLayoutManager iOlm, LiveObject lo, Rectangle rect)
 {
     if (iOlm != null)
     {
         return(iOlm.countIntersections(lo, rect));
     }
     else
     {
         return(0);
     }
 }
예제 #2
0
 public override int countIntersections(IObjectsLayoutManager olm, LiveObject lo, Rectangle rect)
 {
     return(olm.countIntersections(lo, rect));
 }
예제 #3
0
 public override int countIntersections(IObjectsLayoutManager olm, LiveObject lo, Rectangle rect)
 {
     return olm.countIntersections(lo, rect);
 }
예제 #4
0
 public virtual int countIntersections(IObjectsLayoutManager iOlm, LiveObject lo, Rectangle rect)
 {
     if(iOlm != null)
     {
         return iOlm.countIntersections(lo, rect);
     }
     else
     {
         return 0;
     }
 }