namespace Yw.Application.Curve
{
///
///
///
public class CurveExpressDto
{
///
///
///
public CurveExpressDto() { }
///
///
///
public CurveExpressDto(Yw.Curve.CurveExpress rhs)
{
this.FitType = rhs.FitType;
this.DefinePoints = rhs.DefinePoints;
this.PointList = FitHelper.GetFitPoints(rhs, ConfigHelper.PointNumber);
}
///
/// 拟合类型
///
public eFitType FitType { get; set; }
///
/// 定义点列表
///
public List DefinePoints { get; set; }
///
/// 拟合点列表
///
public List PointList { get; set; }
}
}