Shuxia Ning
2025-01-07 4397d67969ede2fe50a1fd2953ecb69b2878d29c
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 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; }
    }
 
}