EllipsoidSurfaceRegionBuilderGetClosedPoints Method |
Closes a set of input points by checking the final point. If the final point
is equal to the initial point, the set of points is returned. If not, then
the initial point is added to the end of the list of points.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax protected static List<Cartographic> GetClosedPoints(
List<Cartographic> points
)
Protected Shared Function GetClosedPoints (
points As List(Of Cartographic)
) As List(Of Cartographic)
protected:
static List<Cartographic>^ GetClosedPoints(
List<Cartographic>^ points
)
static member GetClosedPoints :
points : List<Cartographic> -> List<Cartographic>
Parameters
- points
- Type: System.Collections.GenericListCartographic
The list of points to close.
Return Value
Type:
ListCartographicThe points where point[0] == point[n] where n = final point.
See Also