(solid)
| 7 | } |
| 8 | |
| 9 | function export_debug_step(solid) { |
| 10 | |
| 11 | let debug_step_file = "debug_step"; |
| 12 | let counter= 0; |
| 13 | while (fs.existsSync(debug_step_file + counter.toString() + ".step")) { |
| 14 | counter ++; |
| 15 | } |
| 16 | debug_step_file = debug_step_file + counter.toString() + ".step"; |
| 17 | |
| 18 | debugLog("The solid causing problem has been saved in ", debug_step_file); |
| 19 | occ.writeSTEP(debug_step_file, solid); |
| 20 | } |
| 21 | exports.init= function() { |
| 22 | |
| 23 |
no test coverage detected