(tol, angle)
| 243 | shape2 = makeShape(); |
| 244 | }); |
| 245 | function test_with(tol, angle) { |
| 246 | it(makeShape.name + " testing with parameter : deflection : " + tol + " angle :" + angle, function () { |
| 247 | const mesh1 = shape2.createMesh(tol, angle); |
| 248 | debugLog(" vertices = ", mesh1.vertices.length); |
| 249 | debugLog(" triangles = ", mesh1.triangles.length); |
| 250 | }); |
| 251 | } |
| 252 | test_with(0.01, 0.5); |
| 253 | test_with(0.01, 5); |
| 254 | test_with(0.01, 10); |
no test coverage detected