Finds convex hull of 2D point set using Sklansky's algorithm

C# | Visual Basic | Visual C++ |
public static Seq<PointF> ConvexHull( PointF[] points, MemStorage storage, ORIENTATION orientation )
Public Shared Function ConvexHull ( _ points As PointF(), _ storage As MemStorage, _ orientation As ORIENTATION _ ) As Seq(Of PointF)
public: static Seq<PointF>^ ConvexHull( array<PointF>^ points, MemStorage^ storage, ORIENTATION orientation )

- points (array< PointF >[]()[])
- The points to find convex hull from
- storage (MemStorage)
- the storage used by the resulting sequence
- orientation (ORIENTATION)
- The orientation of the convex hull

The convex hull of the points