CurveBoundary(Int32, Curve3d, Curve2d, Boolean,
Boolean) Constructor
|
Constructor for the CurveBoundary class.
Namespace: Teigha.Geometry
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public CurveBoundary(
int numberOfCurves,
Curve3d[] curve3d,
Curve2d[] curve2d,
bool orientation3d,
bool orientation2d
)
Public Sub New (
numberOfCurves As Integer,
curve3d As Curve3d(),
curve2d As Curve2d(),
orientation3d As Boolean,
orientation2d As Boolean
)
public:
CurveBoundary(
int numberOfCurves,
array<Curve3d^>^ curve3d,
array<Curve2d^>^ curve2d,
bool orientation3d,
bool orientation2d
)
new :
numberOfCurves : int *
curve3d : Curve3d[] *
curve2d : Curve2d[] *
orientation3d : bool *
orientation2d : bool -> CurveBoundary
Parameters
- numberOfCurves Int32
- [in] Number of curves in the curve boundary.
- curve3d Curve3d
- [in] Array of 3D curves of each element in the curve
boundary.
- curve2d Curve2d
- [in] Array of 2D curves of each element in the curve
boundary.
- orientation3d Boolean
- [in] Orientation flag for each 3D curve element (regular or
revesed). Valid only if curve3d is not NULL.
- orientation2d Boolean
- [in] Orientation flag for each 2D curve element (regular or
revesed). Valid only if curve2d is not NULL.
See Also