PatchFeatureInput.groupContinuity Property

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

Description

Gets and sets the type of surface continuity to use for all edges when the isGroupEdges property is true. The continuity is used to determine how the patch connects to any B-Rep edges in the boundary. It is ignored for any sketch curves in the boundary. The property defaults to ConnectedSurfaceContinuityType. The value of this property is ignored if the isGroupEdges property is false.

Syntax

"patchFeatureInput_var" is a variable referencing a PatchFeatureInput object.

# Get the value of the property.
propertyValue = patchFeatureInput_var.groupContinuity

# Set the value of the property.
patchFeatureInput_var.groupContinuity = propertyValue
"patchFeatureInput_var" is a variable referencing a PatchFeatureInput object.
#include <Fusion/Features/PatchFeatureInput.h>

// Get the value of the property.
SurfaceContinuityTypes propertyValue = patchFeatureInput_var->groupContinuity();

// Set the value of the property, where value_var is a SurfaceContinuityTypes.
bool returnValue = patchFeatureInput_var->groupContinuity(value_var);

Property Value

This is a read/write property whose value is a SurfaceContinuityTypes.

Version

Introduced in version November 2022