UntrimFeatures.createInputFromLoops Method
Parent Object:
UntrimFeaturesDefined in namespace "adsk::fusion" and the header file is <Fusion/Features/UntrimFeatures.h>
Description
Creates a UntrimFeatureInput object that defines the input needed to create a untrim feature. Use the input object to define the input to create the desired feature and then use the Add method, passing in the UntrimFeatureInput object.
Syntax
"untrimFeatures_var" is a variable referencing a UntrimFeatures object.# Uses no optional arguments. returnValue = untrimFeatures_var.createInputFromLoops(loops)
# Uses optional arguments. returnValue = untrimFeatures_var.createInputFromLoops(loops, extensionDistance)
|
"untrimFeatures_var" is a variable referencing a UntrimFeatures object.
#include <Fusion/Features/UntrimFeatures.h>
// Uses no optional arguments. returnValue = untrimFeatures_var->createInputFromLoops(loops);
// Uses optional arguments. returnValue = untrimFeatures_var->createInputFromLoops(loops, extensionDistance);
|
Return Value
UntrimFeatureInput |
Returns the newly created UntrimFeatureInput object or null if the creation failed. |
Parameters
loops |
BRepLoop[] |
Input the entities that define loops to remove. Only loops that do not have a connected face can be removed (the edges in the loop have a single face) The array can only contain loops from surface bodies, (the isSolid property of the BRepBody returns false). |
extensionDistance |
ValueInput |
If an external boundary is removed the untrimmed face can be extended by a specified distance.
This is an optional argument whose default value is null. |
Samples
Version
Introduced in version January 2021