|
SubPolyline3 Constructor (PolyLine3, Int32, Int32)
|
Initializes a new instance of the
SubPolyline3 class.
Create a subpolyline from a polyline.
Namespace:
Karamba.Results.ShellSection
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic SubPolyline3(
PolyLine3 polyline,
int firstIndex = 0,
int lastIndex = 0
)
Public Sub New (
polyline As PolyLine3,
Optional firstIndex As Integer = 0,
Optional lastIndex As Integer = 0
)
public:
SubPolyline3(
PolyLine3^ polyline,
int firstIndex = 0,
int lastIndex = 0
)
new :
polyline : PolyLine3 *
?firstIndex : int *
?lastIndex : int
(* Defaults:
let _firstIndex = defaultArg firstIndex 0
let _lastIndex = defaultArg lastIndex 0
*)
-> SubPolyline3
Parameters
- polyline
- Type: Karamba.GeometryPolyLine3
Polyline to which the subset belongs. - firstIndex (Optional)
- Type: SystemInt32
Index of the first point of the subset. - lastIndex (Optional)
- Type: SystemInt32
Index of the last point of the subset.
See Also