コード例 #1
0
ファイル: Caption.cs プロジェクト: AlexAbramov/gis
 public GCaption(GType type, Point point) : base(type)
 {
     this.point = point;
     angle      = 0.0f;
     range      = type.GetRangeStrong(this);
     range.Add(this);
 }
コード例 #2
0
ファイル: Polyline.cs プロジェクト: AlexAbramov/gis
 public GPolyline(GType type, Point[] points) : base(type)
 {
     if (points.Length < 2)
     {
         throw new GmException("Polyline should have 2 points at least.");
     }
     this.points = points;
     bounds.Init(points);
     range = type.GetRangeStrong(this);
     range.Add(this);
 }
コード例 #3
0
 public GPoint(GType type, Point point) : base(type)
 {
     this.point = point;
     range      = type.GetRangeStrong(this);
     range.Add(this);
 }