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