add
Add a new points to the end of the mutable point collection.
Since
200.1.0
Add a new point to the end of the mutable point collection by specifying the points x,y coordinates.
Since
200.1.0
Parameters
The x-coordinate of the new point.
The y-coordinate of the new point.
Add a new point to the end of the mutable point collection by specifying the points x,y,z coordinates.
Since
200.1.0
Parameters
The x-coordinate of the new point.
The y-coordinate of the new point.
The z coordinate of the new point.
Inserts a point specified by its x,y coordinates into the mutable point collection at the specified point index. The point index can be equal to the point count and this is equivalent to adding a point to the end of the collection.
Since
200.1.0
Parameters
Zero-based index of the point.
The x-coordinate of the new point.
The y-coordinate of the new point.
Throws
if pointIndex is out of range.
Inserts a point specified by its x,y,z coordinate into the mutable point collection at the specified point index. The point index can be equal to the point count and this is equivalent to adding a point to the end of the collection.
Since
200.1.0
Parameters
Zero-based index of the point.
The x-coordinate of the new point.
The y-coordinate of the new point.
The z-coordinate of the new point.
Throws
if pointIndex is out of range.
Inserts a point into the mutable point collection at the specified point index. The point index can be equal to the point count and this is equivalent to adding a point to the end of the collection.
Since
200.1.0
Parameters
Zero-based index of the point.
The point to insert.
Throws
if pointIndex is out of range.