(self)
| 30 | room.plot() |
| 31 | |
| 32 | def test_plot_walls_2d(self): |
| 33 | room = pra.ShoeBox([3, 4], max_order=2) |
| 34 | room.add_source([1.4, 2.2]) |
| 35 | room.add_microphone([2.3, 3.5]) |
| 36 | |
| 37 | fig, ax = room.plot() |
| 38 | self.assertTrue(_has_wall_collection(ax)) |
| 39 | |
| 40 | fig, ax = room.plot(plot_walls=False) |
| 41 | self.assertFalse(_has_wall_collection(ax)) |
| 42 | |
| 43 | def test_plot_walls_3d(self): |
| 44 | room = pra.ShoeBox([3, 4, 5], max_order=2) |
nothing calls this directly
no test coverage detected