| 294 | } |
| 295 | |
| 296 | EdgePath buildShortestPath( const Mesh & mesh, VertId start, VertId finish, float maxPathLen ) |
| 297 | { |
| 298 | return buildSmallestMetricPath( mesh.topology, edgeLengthMetric( mesh ), start, finish, maxPathLen ); |
| 299 | } |
| 300 | |
| 301 | EdgePath buildShortestPathBiDir( const Mesh & mesh, VertId start, VertId finish, float maxPathLen ) |
| 302 | { |