IKO_BRepOffsetAPI_ThruSections Interface
Creates a bspline surface or solid from an array of wires
HRESULT Init(VARIANT_BOOL isSolid, VARIANT_BOOL ruled, double pres3d)
PParameters
isSolid -[in] Create solid object
ruled - [in] If false the surface will
be smooth interpolated and will have sharp edges otherwise
pres3d - [in] Precision of the operation
- Remarks:
Sets options for building the surface
HRESULT AddWire(IKO_TopoDS_Wire* wire)
Parameters
wire - [in] Wire for building surface
- Remarks:
Adds a wire to sweep the surface throught
HRESULT Build()
- Remarks:
Constructs the surface. The result can be obtained with a call to the Shape()
method below
HRESULT Shape(IKO_TopoDS_Shape** shape)
Parameters
shape -[out,retval] The created shape
- Remarks:
Retuns the shape created with a call to the Build() method
above.
|