TurningTool.toolBlockGeometry Property

Parent Object: TurningTool

Derived from: Tool.toolBlockGeometry


Defined in namespace "adsk::cam" and the header file is <Cam/Tools/TurningTool.h>

Description

Gets the 3D geometry for a tool block attached to the tool.

Syntax

"turningTool_var" is a variable referencing a TurningTool object.
# Get the value of the property.
propertyValue = turningTool_var.toolBlockGeometry

# Set the value of the property.
turningTool_var.toolBlockGeometry = propertyValue
"turningTool_var" Is a variable referencing a TurningTool Object.
#include <Cam/Tools/TurningTool.h>

// Get the value of the property.
Ptr<AssemblyComponentGeometry> propertyValue = turningTool_var->toolBlockGeometry();

// Set the value of the property, where value_var is an AssemblyComponentGeometry.
bool returnValue = turningTool_var->toolBlockGeometry(value_var);
"turningTool_var" Is a variable referencing a TurningTool Object.
// Get the value of the property.
propertyValue = turningTool_var.toolBlockGeometry;

// Set the value of the property.
turningTool_var.toolBlockGeometry = propertyValue;

Property Value

This is a read/write property whose value is an AssemblyComponentGeometry.

Version

Introduced in version September 2026