Exemple #1
0
 public SplineD(PointD posA, PointD posB, PointD posC, PointD posD)
 {
     PosA = posA;
     PosB = posB;
     PosC = posC;
     PosD = posD;
 }
Exemple #2
0
 public SplineD(PointD start, PointD end)
 {
     PosA = start;
     PosB = start;
     PosC = end;
     PosD = end;
 }
Exemple #3
0
 public GeoText(PointD pos, ColorF col, double size, string text)
 {
     Position = pos;
     Color = col;
     Size = size;
     Text = text;
 }
Exemple #4
0
 public GeoSpline(PointD a, PointD b, PointD c, PointD d, ColorF col, double size, bool highlighPoints, TextPoint label = null)
 {
     Spline = new SplineD(a, b, c, d);
     Color = col;
     Size = size;
     HighlightPoints = highlighPoints;
     Label = label;
 }
Exemple #5
0
 public GeoPoint(PointD pos, ColorF col, double size)
 {
     Position = pos;
     Color = col;
     Size = size;
 }
Exemple #6
0
 public TextPoint(PointD position, string text)
 {
     Position = position;
     Text = text;
 }