Navigation
API > API/Runtime > API/Runtime/AIModule
References
| Module | AIModule |
| Header | /Engine/Source/Runtime/AIModule/Public/GeomUtils.h |
| Include | #include "GeomUtils.h" |
namespace UE
{
namespace AI
{
FVector UE&58;&58;AI&58;&58;Bilinear
&40;
const FVector2D UV,
const FVector VertexA,
const FVector VertexB,
const FVector VertexC,
const FVector VertexD
&41;
}
}
Remarks
Interpolates bilinear patch A,B,C,D. U interpolates from A->B, and C->D, and V interpolates from AB->CD. interpolated value.
Parameters
| Name | Description |
|---|---|
| UV | interpolation coordinates [0..1] range |
| VertexA | first corner |
| VertexB | second corner |
| VertexC | third corner |
| VertexD | fourth corner |