GetPolygonPerimeter()
Summary
Gets the perimeter of a closed polygon.
Syntax
perimeter = GetPolygonPerimeter(array coords)
| Argument | Contents |
|---|---|
| coords | An array of coordinates that outline the closed polygon |
Returns
A real number with the length of the perimeter in current map units.
Example
hull_array = ConvexHull(19023)
perimeter = GetPolygonPerimeter(hull_array)
See Also
| Function | Summary |
|---|---|
| GetLineLength() | Returns the length of the line specified by an array of coordinates |
| GetPerimeter() | Gets the perimeter of an area |