Gets the 3D geometry for a tool block attached to the tool.
# Get the value of the property.propertyValue = tool_var.toolBlockGeometry# Set the value of the property.tool_var.toolBlockGeometry = propertyValue
#include <Cam/Tools/Tool.h>// Get the value of the property.Ptr<AssemblyComponentGeometry> propertyValue = tool_var->toolBlockGeometry();// Set the value of the property, where value_var is an AssemblyComponentGeometry.bool returnValue = tool_var->toolBlockGeometry(value_var);
// Get the value of the property.propertyValue = tool_var.toolBlockGeometry;// Set the value of the property.tool_var.toolBlockGeometry = propertyValue;