Visual Basic | |
---|---|
Function InsertPolyline3D( _ ByVal CoordinateDblArray As System.Object, _ ByVal Closed As System.Boolean _ ) As PolyLine3D |
C# | |
---|---|
PolyLine3D InsertPolyline3D( System.object CoordinateDblArray, System.bool Closed ) |
JavaScript | |
---|---|
InsertPolyline3D( CoordinateDblArray : Array, Closed : Boolean ) : dsPolyLine3D |
COM native C++ | |
---|---|
HRESULT InsertPolyline3D( VARIANT CoordinateDblArray, VARIANT_BOOL Closed, IPolyLine3D** PolyLine3D ) |
C++ | |
---|---|
DSRESULT InsertPolyline3D( const dsDoubleArray& CoordinateDblArray, bool Closed, dsPolyLine3D** PolyLine3D ) |
Parameters
- CoordinateDblArray
- Array of the x, y, and z coordinates of the 3D PolyLine (see Remarks)
- Closed
- True to close the 3D PolyLine, false to leave it open
- PolyLine3D[out] or Return Value
- IPolyLine3D
The size of CoordinateDblArray is (3 * (Number of 3D PolyLine vertices)). The order of the elements in the array is (x1, y1, z1, x2, y2, z2 ...).
DraftSight V1R1.3