| 496 | } |
| 497 | |
| 498 | Point3F NavMesh::getLinkStart(U32 idx) |
| 499 | { |
| 500 | return RCtoDTS(Point3F( |
| 501 | mLinkVerts[idx*6], |
| 502 | mLinkVerts[idx*6 + 1], |
| 503 | mLinkVerts[idx*6 + 2])); |
| 504 | } |
| 505 | |
| 506 | DefineEngineMethod(NavMesh, getLinkStart, Point3F, (U32 id),, |
| 507 | "Get the starting point of an off-mesh link.") |
no test coverage detected