MirrorFeature.mirrorPlane Property

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

Description

Gets and sets the mirror plane. This can be either a planar face or construction plane. This works only for parametric features.

To set this property, 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

"mirrorFeature_var" is a variable referencing a MirrorFeature object.

# Get the value of the property.
propertyValue = mirrorFeature_var.mirrorPlane

# Set the value of the property.
mirrorFeature_var.mirrorPlane = propertyValue
"mirrorFeature_var" is a variable referencing a MirrorFeature object.
#include <Fusion/Features/MirrorFeature.h>

// Get the value of the property.
Ptr<Base> propertyValue = mirrorFeature_var->mirrorPlane();

// Set the value of the property, where value_var is a Base.
bool returnValue = mirrorFeature_var->mirrorPlane(value_var);

Property Value

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

Version

Introduced in version November 2014