示例#1
0
文件: GeoText.cs 项目: mgrman/DGCLib
 public GeoText(PointD pos, ColorF col, double size, string text)
 {
     Position = pos;
     Color = col;
     Size = size;
     Text = text;
 }
示例#2
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;
 }
示例#3
0
文件: GeoPoint.cs 项目: mgrman/DGCLib
 public GeoPoint(PointD pos, ColorF col, double size)
 {
     Position = pos;
     Color = col;
     Size = size;
 }