public Path(string pathDescription, Point3D point)
     : this(point)
 {
     this.PathDescription = pathDescription;
 }
 public Path(Point3D point)
     : this()
 {
     this.pathList.Add(point);
 }