lixiaojun
2024-03-27 56b519c5ee0ee0615400c7df8d455f9766fa600b
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
34
35
36
37
38
namespace Yw.Dto.Curve
{
    /// <summary>
    /// 
    /// </summary>
    public class CurveExpressDto
    {
        /// <summary>
        /// 
        /// </summary>
        public CurveExpressDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        public CurveExpressDto(Yw.Curve.CurveExpress rhs)
        {
            this.FitType = rhs.FitType;
            this.DefinePoints = rhs.DefinePoints;
            this.PointList = FitHelper.GetFitPoints(rhs, ConfigHelper.PointNumber);
        }
 
        /// <summary>
        /// 拟合类型
        /// </summary>
        public eFitType FitType { get; set; }
 
        /// <summary>
        /// 定义点列表
        /// </summary>
        public List<CurvePoint> DefinePoints { get; set; }
 
        /// <summary>
        /// 拟合点列表
        /// </summary>
        public List<CurvePoint> PointList { get; set; }
    }
}