namespace HStation.Model { /// /// 曲线点 /// public class RevitCurvePoint { /// /// /// public RevitCurvePoint() { } /// /// /// public RevitCurvePoint(double x, double y) { this.X = x; this.Y = y; } /// /// /// public RevitCurvePoint(RevitCurvePoint rhs) { this.X = rhs.X; this.Y = rhs.Y; } /// /// X /// public double X { get; set; } /// /// Y /// public double Y { get; set; } } }