1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| namespace Yw.WinFrmUI.Phart
| {
| /// <summary>
| ///
| /// </summary>
| public class OLViewModel : Yw.Ahart.CurveOL
| {
| public OLViewModel() { }
|
| public OLViewModel(Yw.Ahart.CurveOL qh) : base(qh)
| {
|
| }
|
| public OLViewModel(Yw.Ahart.eFeatType feat_type, List<Yw.Geometry.Point2d> pt_list) : base(feat_type, pt_list)
| {
|
| }
|
| public OLViewModel(Yw.Ahart.CurveOL curve, OLGraphParasViewModel graph_paras, CurveGeometryParasViewModel geometry_paras) : base(curve)
| {
| //
| this.DefinePoints = geometry_paras.DefinePoints;
| }
|
|
| /// <summary>
| /// 定义点列表
| /// </summary>
| public List<Yw.Geometry.Point2d> DefinePoints { get; set; }
| }
|
| }
|
|