API Documentation > Classes > Interface IpfcShrinkwrapFacetedPartInstructions
Interface IpfcShrinkwrapFacetedPartInstructions
Description
This interface contains instructions to export a solid model to a shrinkwrap faceted part.
See Also:
Direct Parent Classes:
User Guide References:
Property Summary
Property
as Boolean
true if the output part should be lightweight, null or false otherwise.
Property
The solid model handle where the geometry will be created. You can create an empty part through IpfcBaseSession.CreatePart() or copy a template model using IpfcModel.Copy().
Method Summary
Function
Creates a new instructions object used to export a faceted shrinkwrap model.
Property Detail
Property
Lightweight
as Boolean
true if the output part should be lightweight, null or false otherwise.
Property
OutputModel
The solid model handle where the geometry will be created. You can create an empty part through IpfcBaseSession.CreatePart() or copy a template model using IpfcModel.Copy().
Method Detail
Function
CCpfcShrinkwrapFacetedPartInstructions.Create
(OutputModel as IpfcModel, Lightweight as Boolean) as IpfcShrinkwrapFacetedPartInstructions
Creates a new instructions object used to export a faceted shrinkwrap model.
See Also:
Parameters:
OutputModel
The output model where geometry will be created. Use IpfcBaseSession.CreatePart() to obtain an empty part, or copy a template with IpfcModel.Copy().
Lightweight
true to create a lightweight shrinkwrap part, null or false to create a normal shrinkwrap part.
Returns:
The created instructions object.
Was this helpful?