PolylineSegment Constructor (Point2d, Point2d, Double, Double) |
Creates a new instance of PolylineSegment.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic PolylineSegment(
Point2d startPoint,
Point2d endPoint,
double bulge = 0,
double constantWidth = 0
)
Public Sub New (
startPoint As Point2d,
endPoint As Point2d,
Optional bulge As Double = 0,
Optional constantWidth As Double = 0
)
public:
PolylineSegment(
Point2d startPoint,
Point2d endPoint,
double bulge = 0,
double constantWidth = 0
)
new :
startPoint : Point2d *
endPoint : Point2d *
?bulge : float *
?constantWidth : float
(* Defaults:
let _bulge = defaultArg bulge 0
let _constantWidth = defaultArg constantWidth 0
*)
-> PolylineSegment
Parameters
- startPoint
- Type: Point2d
Start point of the segment. - endPoint
- Type: Point2d
End point of the segment. - bulge (Optional)
- Type: SystemDouble
Bulge of the segment (default 0.0). - constantWidth (Optional)
- Type: SystemDouble
Constant width of the segment (default 0.0).
See Also