fix test (csg2d interface change)

This commit is contained in:
Matthias Hochsteger 2020-11-06 11:51:15 +01:00
parent 6199c7f66b
commit dae6ded752

View File

@ -5,7 +5,7 @@ from pytest import approx
def test_two_circles():
c1 = Circle(center=(0,0), radius=1)
c2 = c1.Rotate(deg=45)
c2 = c1.Rotate(45)
s = c1*c2
geo = CSG2d()
geo.Add(s)