| 335 | } |
| 336 | |
| 337 | EdgePath buildShortestPathAStar( const Mesh & mesh, VertId start, VertId finish, float maxPathLen ) |
| 338 | { |
| 339 | return buildShortestPathAStar( mesh, |
| 340 | MeshTriPoint( mesh.topology, start ), |
| 341 | MeshTriPoint( mesh.topology, finish ), |
| 342 | nullptr, nullptr, maxPathLen ); |
| 343 | } |
| 344 | |
| 345 | EdgePath buildShortestPathAStar( const Mesh & mesh, const MeshTriPoint & start, const MeshTriPoint & finish, |
| 346 | VertId * outPathStart, VertId * outPathFinish, float maxPathLen ) |
no test coverage detected