Beispiel #1
0
 private bool checkNewRoll(List<RollSegment> segSomes, Vector2d direction, RollSegment rollSeg)
 {
     if (segSomes.Count > 0 && !rollSeg.IsPartition && !direction.IsCodirectionalTo(rollSeg.Direction, RollUpService.Tolerance))
     {
         return true;
     }
     return false;
 }