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