Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/TConvexHull3
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray< THalfspace3< RealType > > GetAsHalfspaces
(
TArrayView< const VectorType > Points |
Convert an already-computed convex hull into a halfspace representation Following the logic of ContainmentQueries3.h, all halfspaces are oriented "outwards," so a point is inside the convex hull if it is outside of all halfspaces in the array | CompGeom/ConvexHull3.h | |
TArray< THalfspace3< RealType > > GetAsHalfspaces
(
TFunctionRef< VectorType(int32)> GetPointFunc |
Convert an already-computed convex hull into a halfspace representation Following the logic of ContainmentQueries3.h, all halfspaces are oriented "outwards," so a point is inside the convex hull if it is outside of all halfspaces in the array | CompGeom/ConvexHull3.h |
GetAsHalfspaces(TArrayView< const VectorType >)
Description
Convert an already-computed convex hull into a halfspace representation Following the logic of ContainmentQueries3.h, all halfspaces are oriented "outwards," so a point is inside the convex hull if it is outside of all halfspaces in the array
| Name | GetAsHalfspaces |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/ConvexHull3.h |
| Include Path | #include "CompGeom/ConvexHull3.h" |
template<typename VectorType>
TArray < THalfspace3 < RealType > > GetAsHalfspaces
(
TArrayView < const VectorType > Points
) const
Array of halfspaces
Parameters
| Name | Remarks |
|---|---|
| Points | Array of points to consider |
GetAsHalfspaces(TFunctionRef< VectorType(int32)>)
Description
Convert an already-computed convex hull into a halfspace representation Following the logic of ContainmentQueries3.h, all halfspaces are oriented "outwards," so a point is inside the convex hull if it is outside of all halfspaces in the array
| Name | GetAsHalfspaces |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/ConvexHull3.h |
| Include Path | #include "CompGeom/ConvexHull3.h" |
template<typename VectorType>
TArray < THalfspace3 < RealType > > GetAsHalfspaces
(
TFunctionRef < VectorType> GetPointFunc
) const
Array of halfspaces
Parameters
| Name | Remarks |
|---|---|
| GetPointFunc | Function providing array-style access into points |