Skip to main content
Show raw api
{
    "functions": [
        {
            "name": "convexHull",
            "desc": "Computes the convex hull for a given set of points\n\nhttps://en.wikipedia.org/wiki/Gift_wrapping_algorithm",
            "params": [
                {
                    "name": "points",
                    "desc": "",
                    "lua_type": "Vector3"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "{ Vector3 }"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 24,
                "path": "src/convexhull/src/Shared/ConvexHull3DUtils.lua"
            }
        }
    ],
    "properties": [],
    "types": [],
    "name": "ConvexHull3DUtils",
    "desc": "3D convex hull computation using gift wrappling algorithm\n\nhttps://en.wikipedia.org/wiki/Gift_wrapping_algorithm",
    "source": {
        "line": 8,
        "path": "src/convexhull/src/Shared/ConvexHull3DUtils.lua"
    }
}