| 510 | } |
| 511 | |
| 512 | Point3F NavMesh::getLinkEnd(U32 idx) |
| 513 | { |
| 514 | return RCtoDTS(Point3F( |
| 515 | mLinkVerts[idx*6 + 3], |
| 516 | mLinkVerts[idx*6 + 4], |
| 517 | mLinkVerts[idx*6 + 5])); |
| 518 | } |
| 519 | |
| 520 | DefineEngineMethod(NavMesh, getLinkEnd, Point3F, (U32 id),, |
| 521 | "Get the ending point of an off-mesh link.") |
no test coverage detected