(self)
| 14 | |
| 15 | class TestCadObjects(BaseTest): |
| 16 | def _make_circle(self): |
| 17 | |
| 18 | circle = gp_Circ(gp_Ax2(gp_Pnt(1, 2, 3), gp.DZ_s()), 2.0) |
| 19 | return Shape.cast(BRepBuilderAPI_MakeEdge(circle).Edge()) |
| 20 | |
| 21 | def _make_ellipse(self): |
| 22 |
no test coverage detected