Constructs an arc through three points. None of the three points may be coincident and they may not be colinear. This constructor always constructs a bounded arc and cannot be used to construct a full circle.
Public Sub New( startPoint As Point2d, point As Point2d, endPoint As Point2d )
public CircularArc2d( Point2d startPoint, Point2d point, Point2d endPoint );
Parameters |
Description |
Point2d startPoint |
Input start point of arc |
Point2d point |
Input point on arc |
Point2d endPoint |
Input endpoint of arc |
Comments? |