PolyPoint2d Class

Class that makes up the nodes in a polyline. Bulge is the 'bend' factor for the arc.
Public Class PolyPoint2d 
Inherits Point2d
This language is not supported or no code example is available.
public class PolyPoint2d : Point2d
This language is not supported or no code example is available.
public ref class PolyPoint2d : public Point2d^
This language is not supported or no code example is available.
public class PolyPoint2d 
extends Point2d
This language is not supported or no code example is available.
Name Description
Public constructor PolyPoint2d() Create a polypoint at world origo with bulge=0.0.
Public constructor PolyPoint2d(Point2d) Construct a 0-bulge polypoint from a point.
Public constructor PolyPoint2d(Point2d, double) Constructs a polypoint from a point and a bulge
Public constructor PolyPoint2d(PolyPoint2d) Copy constructor.
Public constructor PolyPoint2d(double, double, double) Creates a new polypoint given x,y and bulge as doubles.
Public constructor PolyPoint2d(double, double, double, object) Creates a new polypoint given x,y and bulge as doubles. Also giving it a tag object.
Top
Name Description
Public property Bulge Gets or sets the bulge factor of this point.
Top
Methods
 
Name Description
Public method Mirror(Point2d, Point2d)
Public method ToPoint()
Public method ToString() Creates a new string containing debug purpose data of this point.
Public method Transform(Matrix2d) Transforms this poly point in-place with a matrix. Except for normal point transformation, it inverts the bulge factor of the point if the matrix is a reflecting matrix.
Top

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition