()
| 15 | |
| 16 | @fixture(scope="module") |
| 17 | def showables(): |
| 18 | |
| 19 | # showables |
| 20 | s = box(1, 1, 1) |
| 21 | wp = Workplane().box(1, 1, 1) |
| 22 | assy = Assembly().add(box(1, 1, 1)) |
| 23 | sk = Sketch().rect(1, 1) |
| 24 | ctrl_pts = ctrlPts(sk.val().toNURBS()) |
| 25 | v = Vector() |
| 26 | loc = Location() |
| 27 | act = vtkAxesActor() |
| 28 | |
| 29 | return (s, s.copy(), wp, assy, sk, ctrl_pts, v, loc, act) |
| 30 | |
| 31 | |
| 32 | @mark.gui |
nothing calls this directly
no test coverage detected