Navigation
API > API/Runtime > API/Runtime/Core
Description
Alternate simple implementation that was found to work correctly for points that are very close together (inside the 0-1 range).
Should be replaced by ComputeConvexHull and tested properly. Keep for backward compatibility until then.
| Name | ConvexHull2D::ComputeConvexHullLegacy2 |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Math/ConvexHull2d.h |
| Include Path | #include "Math/ConvexHull2d.h" |
namespace ConvexHull2D
{
template<typename Allocator>
void ConvexHull2D::ComputeConvexHullLegacy2
(
const TArray < FVector2D, Allocator > & Points,
TArray < int32, Allocator > & OutIndices
)
}