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