| 299 | } |
| 300 | |
| 301 | EdgePath buildShortestPathBiDir( const Mesh & mesh, VertId start, VertId finish, float maxPathLen ) |
| 302 | { |
| 303 | return buildSmallestMetricPathBiDir( mesh.topology, edgeLengthMetric( mesh ), start, finish, maxPathLen ); |
| 304 | } |
| 305 | |
| 306 | EdgePath buildShortestPathBiDir( const Mesh & mesh, |
| 307 | const MeshTriPoint & start, const MeshTriPoint & finish, |
no test coverage detected