ExtendFeature.setInputEntities Method

Parent Object: ExtendFeature
Defined in namespace "adsk::fusion" and the header file is <Fusion/Features/ExtendFeature.h>

Description

Sets the edges for the extend feature.

To use this method, you need to position the timeline marker to immediately before this feature. This can be accomplished using the following code: thisFeature.timelineObject.rollTo(True)

Syntax

"extendFeature_var" is a variable referencing an ExtendFeature object.
# Uses no optional arguments.
returnValue = extendFeature_var.setInputEntities(edges)

# Uses optional arguments.
returnValue = extendFeature_var.setInputEntities(edges, isChainingEnabled)
"extendFeature_var" is a variable referencing an ExtendFeature object.

#include <Fusion/Features/ExtendFeature.h>

// Uses no optional arguments.
returnValue = extendFeature_var->setInputEntities(edges);

// Uses optional arguments.
returnValue = extendFeature_var->setInputEntities(edges, isChainingEnabled);

Return Value

Type Description
boolean Returns true if successful

Parameters

Name Type Description
edges ObjectCollection The surface edges to extend. Only the surface edges from an open body can be extended. The edges must all be from the same open body.
isChainingEnabled boolean An optional boolean argument whose default is true. If this argument is set to true, all edges that are tangent or curvature continuous, and end point connected, will be found automatically and extended.

This is an optional argument whose default value is True.

Version

Introduced in version June 2015