public void AddPoint(Point3d point)
 {
     _lastIndex++;
     PointDic.Add(_lastIndex, point);
     //point.ToString().ConsoleWriteLine();
     AddX(point);
     AddY(point);
     AddZ(point);
 }
Beispiel #2
0
 public void Reset()
 {
     IsIdle = true;
     PointDic.Clear();
 }