API Documentation > Interface Classes > Class pfcShrinkwrapFacetedPartInstructions
Class pfcShrinkwrapFacetedPartInstructions

# include <pfcShrinkwrap.h>

class
pfcShrinkwrapFacetedPartInstructions
: public virtual
pfcShrinkwrapFacetedFormatInstructions
{
xdeclare(pfcShrinkwrapFacetedPartInstructions)
...
};
This is a
COMPACT class.

Description
This interface contains instructions to export a solid model to a shrinkwrap faceted part.
See Also:
Manual References:
Method Summary
Create (pfcModel_ptr OutputModel, xbool Lightweight)
Creates a new instructions object used to export a faceted shrinkwrap model.
void
true if the output part should be lightweight, null or false otherwise.
void
The solid model handle where the geometry will be created. You can create an empty part through pfcBaseSession::CreatePart(xrstring) or copy a template model using pfcModel::Copy(xrstring, optional pfcCopyInstructions_ptr).
Methods Inherited from Class pfcShrinkwrapModelExportInstructions::
Methods Inherited from Class pfcShrinkwrapFacetedFormatInstructions::
Method Detail
GetOutputModel
()
void
SetOutputModel
(pfcModel_ptr value)
The solid model handle where the geometry will be created. You can create an empty part through pfcBaseSession::CreatePart(xrstring) or copy a template model using pfcModel::Copy(xrstring, optional pfcCopyInstructions_ptr).
GetLightweight
()
void
SetLightweight
(xbool value)
true if the output part should be lightweight, null or false otherwise.
Manual References:
Create
(pfcModel_ptr OutputModel, xbool Lightweight)
Creates a new instructions object used to export a faceted shrinkwrap model.
See Also:
Manual References:
Parameters:
OutputModel
The output model where geometry will be created. Use pfcBaseSession::CreatePart(xrstring) to obtain an empty part, or copy a template with pfcModel::Copy(xrstring, optional pfcCopyInstructions_ptr).
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?