| 28 | |
| 29 | |
| 30 | CSF::CSF(int index) { |
| 31 | params.bSloopSmooth = true; |
| 32 | params.time_step = 0.65; |
| 33 | params.class_threshold = 0.5; |
| 34 | params.height_threshold = 0.3; |
| 35 | params.cloth_resolution = 1; |
| 36 | params.rigidness = 3; |
| 37 | params.interations = 500; |
| 38 | |
| 39 | this->index = index; |
| 40 | } |
| 41 | |
| 42 | CSF::CSF() { |
| 43 | params.bSloopSmooth = true; |
nothing calls this directly
no outgoing calls
no test coverage detected