Navigation
API > API/Runtime > API/Runtime/GeometryCore
| |
|
| Name |
UE::Geometry::Spline::EParameterizationPolicy |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/GeometryCore/Public/Splines/BSpline.h |
| Include Path |
#include "Splines/BSpline.h" |
Syntax
namespace UE
{
namespace Geometry
{
namespace Spline
{
enum EParameterizationPolicy
{
Uniform,
ChordLength,
Centripetal,
}
}
}
}
Values
| Name |
Remarks |
| Uniform |
Equal spacing between knots regardless of control point positions |
| ChordLength |
Spacing based on actual distances between control points - good for uneven point distribution |
| Centripetal |
Uses square root of distances - helps prevent loops and cusps in the curve |