namespace Yw.WinFrmUI.Phart { /// /// /// public class OLViewModel : Yw.Ahart.CurveOL { public OLViewModel() { } public OLViewModel(Yw.Ahart.CurveOL qh) : base(qh) { } public OLViewModel(Yw.Ahart.eFeatType feat_type, List 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; } /// /// 定义点列表 /// public List DefinePoints { get; set; } } }