Points
An Array of Point objects with integer indexing and a length property.
See also Point.
QuickLinks
Properties
Property | Type | Access | Description |
---|---|---|---|
length | number | r/w | The length of the array |
Methods
Instances
Points concat (value:
Points)
Returns a new array created by concatenating the given values to the end of the original array.
The original array is unchanged. If an array is provided as a parameter to concat(), each of its elements are appended as separate array elements at the end of the new array. Returns a new array, the result of concatenation the given values to the end of the original array.
Parameter | Type | Description |
---|---|---|
value | Points | Any number of values to be added to the end of the array. Can also be arrays. |
Point pop ()
Removes the last element from the array.
number push (value:
Point)
Places value onto the end of the array.
Returns the new length of the array.
Parameter | Type | Description |
---|---|---|
value | Point |
Element of
Line.Points
Polygon.Points
Polyline.Points
TypedVal.psval
Used in:
Points Points.concat (value: Points)
Return
Points Points.concat (value: Points)
Jongware, 18-Jan-2015 v1.0 | Contents :: Index |