Gets and sets the major radius of the torus.
# Get the value of the property.propertyValue = torus_var.majorRadius# Set the value of the property.torus_var.majorRadius = propertyValue
#include <Core/Geometry/Torus.h>// Get the value of the property.double propertyValue = torus_var->majorRadius();// Set the value of the property, where value_var is a double.bool returnValue = torus_var->majorRadius(value_var);