Skip to content

Commit

Permalink
Fix parenthesis bug in _isCoPlanar function (#1451)
Browse files Browse the repository at this point in the history
* Add test demonstrating parenthesis bug

* Fix parenthesis bug in `_isCoPlanar` function
  • Loading branch information
egrim authored Dec 3, 2023
1 parent 2504d6b commit 6869dc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cadquery/cq.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ def _isCoPlanar(f0, f1):
return False

# test if p1 is on the plane of f0 (offset of planes)
return abs(n0.dot(p0.sub(p1)) < self.ctx.tolerance)
return abs(n0.dot(p0.sub(p1))) < self.ctx.tolerance

def _computeXdir(normal):
"""
Expand Down
4 changes: 4 additions & 0 deletions tests/test_cadquery.py
Original file line number Diff line number Diff line change
Expand Up @@ -1613,6 +1613,10 @@ def testMultiFaceWorkplane(self):
self.assertAlmostEqual(o.y, 0.0, 3)
self.assertAlmostEqual(o.z, 0.5, 3)

# Test creation with non-co-planar faces fails
with raises(ValueError):
w = s.faces("+Y").workplane()

def testTriangularPrism(self):
s = Workplane("XY").lineTo(1, 0).lineTo(1, 1).close().extrude(0.2)
self.saveModel(s)
Expand Down

0 comments on commit 6869dc6

Please sign in to comment.