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