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