LoftFeatureInput.participantBodies Property
Parent Object:
LoftFeatureInputDefined in namespace "adsk::fusion" and the header file is <Fusion/Features/LoftFeatureInput.h>
Description
Gets and sets the list of bodies that will participate in the feature when the operation is a cut or intersection.
If this property has not been set, the default behavior is that all bodies that are intersected by the feature will participate.
This property can return null in the case where the feature has not been fully defined so that possible intersecting bodies can be computed.
Syntax
"loftFeatureInput_var" is a variable referencing a LoftFeatureInput object.
# Get the value of the property. propertyValue = loftFeatureInput_var.participantBodies
# Set the value of the property. loftFeatureInput_var.participantBodies = propertyValue
|
"loftFeatureInput_var" is a variable referencing a LoftFeatureInput object.
#include <Fusion/Features/LoftFeatureInput.h>
// Get the value of the property. std::vector<Ptr<BRepBody>> propertyValue = loftFeatureInput_var->participantBodies();
// Set the value of the property, where value_var is a BRepBody. bool returnValue = loftFeatureInput_var->participantBodies(value_var);
|
Property Value
This is a read/write property whose value is an array of type
BRepBody.
Version
Introduced in version January 2017