| 2076 | //----------------------------------------------------------------------------- |
| 2077 | |
| 2078 | void VPath::calculateLinearPath( VPathNode *pNode, VPathNode *pNextNode ) |
| 2079 | { |
| 2080 | // Calculate Segment Length. |
| 2081 | pNode->setLength( ( pNextNode->getWorldPosition() - pNode->getWorldPosition() ).len() ); |
| 2082 | } |
| 2083 | |
| 2084 | Point3F VPath::getAdvancedLinearPathPosition( VPathObject *pPathObject, const F32 &pTargetDistance, F32 &pPathInterpDelta ) |
| 2085 | { |
nothing calls this directly
no test coverage detected