Gets and sets the center position of the elliptical arc.
# Get the value of the property.propertyValue = ellipticalArc2D_var.center# Set the value of the property.ellipticalArc2D_var.center = propertyValue
#include <Core/Geometry/EllipticalArc2D.h>// Get the value of the property.Ptr<Point2D> propertyValue = ellipticalArc2D_var->center();// Set the value of the property, where value_var is a Point2D.bool returnValue = ellipticalArc2D_var->center(value_var);