Gets and sets the end point of the line.
# Get the value of the property.propertyValue = line2D_var.endPoint# Set the value of the property.line2D_var.endPoint = propertyValue
#include <Core/Geometry/Line2D.h>// Get the value of the property.Ptr<Point2D> propertyValue = line2D_var->endPoint();// Set the value of the property, where value_var is a Point2D.bool returnValue = line2D_var->endPoint(value_var);