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