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