Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/CompGeom > API/Runtime/GeometryCore/CompGeom/TConvexHull3 > API/Runtime/GeometryCore/CompGeom/TConvexHull3/Solve
References
| Module | GeometryCore |
| Header | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/ConvexHull3.h |
| Include | #include "CompGeom/ConvexHull3.h" |
| Source | /Engine/Source/Runtime/GeometryCore/Private/CompGeom/ConvexHull3.cpp |
bool Solve
&40;
int32 NumPoints,
TFunctionRef< TVector< RealType >(int32)> GetPointFunc,
TFunctionRef< bool(int32)> FilterFunc
&41;
Remarks
Generate convex hull as long as input is not degenerate If input is degenerate, this will return false, and caller can call GetDimension() to determine whether the points were coplanar, collinear, or all the same point true if hull was generated, false if points span < 2 dimensions
Parameters
| Name | Description |
|---|---|
| NumPoints | Number of points to consider |
| GetPointFunc | Function providing array-style access into points |
| Filter | Optional filter to include only a subset of the points in the output hull |