Esempio n. 1
0
 /// <summary>
 /// Часть буфера, хранящего данные с xml документа.
 /// Хранит информацию о кривой. Список точек представлен их id. Special - специальные параметры кривой.
 /// </summary>
 public Curve(type_line type, uint id, List <uint> points, List <string> special)
 {
     this.type    = type;
     this.id      = id;
     this.points  = points;
     this.special = special;
 }
Esempio n. 2
0
 public curve(type_line type)
 {
     this.type = type;
 }