public TdPoly(TdPolyPoint x, TdPolyPoint y, TdPoly basePoly) : this(x, y) { IsAreaBorderOrVirtualGapLine = basePoly.IsAreaBorderOrVirtualGapLine; IsCornerPoint = basePoly.IsCornerPoint; IsFirstBezierCurvePoint = basePoly.IsFirstBezierCurvePoint; IsFirstPointInAreaHole = basePoly.IsFirstPointInAreaHole; IsLeftLineHiddenUntillNextPoint = basePoly.IsLeftLineHiddenUntillNextPoint; IsPointDashLine = basePoly.IsPointDashLine; IsRightLineHiddenUntilNextPoint = basePoly.IsRightLineHiddenUntilNextPoint; IsSecondBezierCurvePoint = basePoly.IsSecondBezierCurvePoint; }
protected bool Equals(TdPolyPoint other) { return Coordinate == other.Coordinate; }
public TdPoly(TdPolyPoint x, TdPolyPoint y) { X = x; Y = y; }