public Point(double x, double y, string name)
 {
     X = x;
     Y = y;
     Description = new PointDescription(name);
 }
Beispiel #2
0
 public Point(double x, double y, string name)
 {
     X           = x;
     Y           = y;
     Description = new PointDescription(name);
 }