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