コード例 #1
0
ファイル: SplineD.cs プロジェクト: mgrman/DGCLib
 public SplineD(PointD posA, PointD posB, PointD posC, PointD posD)
 {
     PosA = posA;
     PosB = posB;
     PosC = posC;
     PosD = posD;
 }
コード例 #2
0
ファイル: SplineD.cs プロジェクト: mgrman/DGCLib
 public SplineD(PointD start, PointD end)
 {
     PosA = start;
     PosB = start;
     PosC = end;
     PosD = end;
 }
コード例 #3
0
ファイル: GeoText.cs プロジェクト: mgrman/DGCLib
 public GeoText(PointD pos, ColorF col, double size, string text)
 {
     Position = pos;
     Color = col;
     Size = size;
     Text = text;
 }
コード例 #4
0
ファイル: GeoSpline.cs プロジェクト: mgrman/DGCLib
 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;
 }
コード例 #5
0
ファイル: GeoPoint.cs プロジェクト: mgrman/DGCLib
 public GeoPoint(PointD pos, ColorF col, double size)
 {
     Position = pos;
     Color = col;
     Size = size;
 }
コード例 #6
0
ファイル: TextPoint.cs プロジェクト: mgrman/DGCLib
 public TextPoint(PointD position, string text)
 {
     Position = position;
     Text = text;
 }