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