Beispiel #1
0
 /// <summary>
 /// Конструктор класса эллипс
 /// </summary>
 public Ellipse()
 {
     _lineProperties = new LineProperties();
     _points         = new Points(2);
     _fillProperty   = new FillProperty();
 }
Beispiel #2
0
 /// <summary>
 /// Конструктор класса полилинии
 /// </summary>
 public Polyline()
 {
     _lineProperties = new LineProperties();
     _points         = new Points();
 }
Beispiel #3
0
 /// <summary>
 /// Конструктор класса полигона
 /// </summary>
 public Polygon()
 {
     _lineProperties = new LineProperties();
     _points         = new Points();
     _fillProperty   = new FillProperty();
 }