Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 protected bool Equals(TdPolyPoint other)
 {
     return Coordinate == other.Coordinate;
 }
Exemplo n.º 3
0
 public TdPoly(TdPolyPoint x, TdPolyPoint y)
 {
     X = x;
     Y = y;
 }