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