Exemple #1
0
 private void RemovePoint()
 {
     spline.RemovePoint(selectedIndex);
     if (selectedIndex > 0)
     {
         --selectedIndex;
     }
     else if (spline.Count == 0)
     {
         selectedIndex = -1;
     }
 }