namespace Yw.WinFrmUI.Phart
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class VOLViewModel : Yw.Ahart.CurveVOL
|
{
|
public VOLViewModel() { }
|
|
public VOLViewModel(Yw.Ahart.CurveVOL qh) : base(qh)
|
{
|
|
}
|
|
public VOLViewModel(Yw.Ahart.eFeatType feat_type, List<Yw.Geometry.Point2d> pt_list) : base(feat_type, pt_list)
|
{
|
|
}
|
|
public VOLViewModel(Yw.Ahart.CurveVOL curve, VOLGraphParasViewModel graph_paras, CurveGeometryParasViewModel geometry_paras) : base(curve)
|
{
|
//
|
this.DefinePoints = geometry_paras.DefinePoints;
|
}
|
|
|
/// <summary>
|
/// 定义点列表
|
/// </summary>
|
public List<Yw.Geometry.Point2d> DefinePoints { get; set; }
|
}
|
|
}
|