Exemple #1
0
 public void updatePosition()
 {
     if (moved && childSegment != null)
     {
         childSegment.updatePosition();
         moved = false;
     }
 }
Exemple #2
0
 public void updatePosition()
 {
     computePosition();
     if (childSegment != null)
     {
         childSegment.updatePosition();
     }
 }