| 717 | |
| 718 | |
| 719 | bool Foam::motionSmootherAlgo::scaleMesh |
| 720 | ( |
| 721 | labelList& checkFaces, |
| 722 | const bool smoothMesh, |
| 723 | const label nAllowableErrors |
| 724 | ) |
| 725 | { |
| 726 | List<labelPair> emptyBaffles; |
| 727 | return scaleMesh |
| 728 | ( |
| 729 | checkFaces, |
| 730 | emptyBaffles, |
| 731 | smoothMesh, |
| 732 | nAllowableErrors |
| 733 | ); |
| 734 | } |
| 735 | |
| 736 | |
| 737 | bool Foam::motionSmootherAlgo::scaleMesh |
nothing calls this directly
no test coverage detected