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