Navigation
API > API/Runtime > API/Runtime/GeometryCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool UE::Geometry::FitKDOPVertices3
(
TArrayView< const UE::Math::TVector< RealType > > PlaneDirections, |
Compute the vertices (and optionally planes) of a k-DOP bounding convex hull containing Points | CompGeom/FitKDOP3.h | |
bool UE::Geometry::FitKDOPVertices3
(
TArrayView< const UE::Math::TVector< RealType > > PlaneDirections, |
Compute the vertices (and optionally planes) of a k-DOP bounding convex hull containing the points returned by GetPointFunc | CompGeom/FitKDOP3.h |
UE::Geometry::FitKDOPVertices3(TArrayView< const UE::Math::TVector< RealType > >, const TArray< UE::Math::TVector< RealType > > &, TArray< UE::Math::TVector< RealType > > &, TArray< UE::Math::TPlane< RealType > > *, RealType, RealType, RealType)
Description
Compute the vertices (and optionally planes) of a k-DOP bounding convex hull containing Points
| Name | UE::Geometry::FitKDOPVertices3 |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/FitKDOP3.h |
| Include Path | #include "CompGeom/FitKDOP3.h" |
namespace UE
{
namespace Geometry
{
template<typename RealType>
bool UE::Geometry::FitKDOPVertices3
(
TArrayView < const UE::Math::TVector < RealType > > PlaneDirections,
const TArray < UE::Math::TVector < RealType > > & Points,
TArray < UE::Math::TVector < RealType > > & OutVertices,
TArray < UE::Math::TPlane < RealType > > * OptionalOutPlanes,
RealType Epsilon,
RealType VertexSnapDistance,
RealType Inflate
)
}
}
UE::Geometry::FitKDOPVertices3(TArrayView< const UE::Math::TVector< RealType > >, const int32, TFunctionRef< UE::Math::TVector< RealType >(int32)>, TArray< UE::Math::TVector< RealType > > &, TArray< UE::Math::TPlane< RealType > > *, RealType, RealType, RealType)
Description
Compute the vertices (and optionally planes) of a k-DOP bounding convex hull containing the points returned by GetPointFunc
| Name | UE::Geometry::FitKDOPVertices3 |
| Type | function |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/CompGeom/FitKDOP3.h |
| Include Path | #include "CompGeom/FitKDOP3.h" |
namespace UE
{
namespace Geometry
{
template<typename RealType>
bool UE::Geometry::FitKDOPVertices3
(
TArrayView < const UE::Math::TVector < RealType > > PlaneDirections,
const int32 NumPoints,
TFunctionRef < UE::Math::TVector < RealType >> GetPointFunc,
TArray < UE::Math::TVector < RealType > > & OutVertices,
TArray < UE::Math::TPlane < RealType > > * OptionalOutPlanes,
RealType Epsilon,
RealType VertexSnapDistance,
RealType Inflate
)
}
}