Gets and sets the origin point (center) of the torus.
# Get the value of the property.propertyValue = torus_var.origin# Set the value of the property.torus_var.origin = propertyValue
#include <Core/Geometry/Torus.h>// Get the value of the property.Ptr<Point3D> propertyValue = torus_var->origin();// Set the value of the property, where value_var is a Point3D.bool returnValue = torus_var->origin(value_var);