예제 #1
0
 public Path(string pathDescription, Point3D point)
     : this(point)
 {
     this.PathDescription = pathDescription;
 }
예제 #2
0
 public Path(Point3D point)
     : this()
 {
     this.pathList.Add(point);
 }