EllipsoidSurfaceRegionBuilder.GetClosedPoints 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: 25.1.421.0 (25.1.421.0)
Syntaxprotected 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.Generic.List<Cartographic>
The list of points to close.
Return Value
Type:
List<Cartographic>The points where point[0] == point[n] where n = final point.
See Also