| 393 | } |
| 394 | |
| 395 | SurfacePath computeSteepestDescentPath( const MeshPart & mp, const VertScalars & field, |
| 396 | const MeshTriPoint & start, const ComputeSteepestDescentPathSettings & settings ) |
| 397 | { |
| 398 | SurfacePath res; |
| 399 | computeSteepestDescentPath( mp, field, start, &res, settings ); |
| 400 | return res; |
| 401 | } |
| 402 | |
| 403 | void computeSteepestDescentPath( const MeshPart & mp, const VertScalars & field, |
| 404 | const MeshTriPoint & start, SurfacePath * outPath, const ComputeSteepestDescentPathSettings & settings ) |
no test coverage detected