Navigation
API > API/Runtime > API/Runtime/Navmesh
Description
Derives the dot product of two vectors on the xz-plane. (u_ . v_)
The vectors are projected onto the xz-plane, so the y-values are ignored.
| Name | dtVdot2D |
| Type | function |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Detour/DetourCommon.h |
| Include Path | #include "Detour/DetourCommon.h" |
dtReal dtVdot2D
(
const dtReal * u,
const dtReal * v
)
The dot product on the xz-plane.
Parameters
| Name | Remarks |
|---|---|
| u | A vector [(x, y, z)] |
| v | A vector [(x, y, z)] |