Kotlin Computational Geometry
Toggle table of contents
0.4.0-rc1
Select version
0.4.0-rc3
0.4.0-rc2
0.4.0-rc1
0.4.0-rc0
0.3.0
0.2.0
0.1.0
common
Target filter
common
Switch theme
Search in API
Skip to content
Kotlin Computational Geometry
Kotlin Computational Geometry
/
io.github.cponfick.kompgeom.algorithms.convexhull
Package-level
declarations
Types
Types
Convex
Hull
Link copied to clipboard
interface
ConvexHull
<
V
:
Vector2
<
V
>
>
:
Algorithm
<
Result
<
V
>
>
Quickhull2
Link copied to clipboard
class
Quickhull2
<
V
:
Vector2
<
V
>
>
(
input
:
Collection
<
V
>
)
:
ConvexHull
<
V
>
Quickhull algorithm for computing the convex hull of a collection of 2D points.
Result
Link copied to clipboard
class
Result
<
V
:
Vector2
<
V
>
>
(
val
points
:
Collection
<
V
>
)