fix doc bug in bottlecaps.

knurling mask didn't pass parameters (so they were ignored)
This commit is contained in:
Adrian Mariano
2022-04-08 20:17:41 -04:00
parent 82aa485045
commit 2cc5c39d64
3 changed files with 30 additions and 24 deletions

View File

@@ -771,7 +771,6 @@ module test_polygon_area() {
assert(abs(polygon_area([[0,0], [0,10], [10,0]],signed=true) + 50) < EPSILON);
assert(abs(polygon_area([[0,0], [0,10], [0,15]],signed=true)) < EPSILON);
assert(abs(polygon_area([[0,0], [10,0], [0,10]],signed=true) - 50) < EPSILON);
}
*test_polygon_area();