Gets and sets the points that define the coordinates of the polyline.
# Get the value of the property.propertyValue = polyline2D_var.points# Set the value of the property.polyline2D_var.points = propertyValue
#include <Core/Geometry/Polyline2D.h>// Get the value of the property.std::vector<Ptr<Point2D>> propertyValue = polyline2D_var->points();// Set the value of the property, where value_var is a Point2D.bool returnValue = polyline2D_var->points(value_var);