(self)
| 24 | room.plot() |
| 25 | |
| 26 | def test_room_3d(self): |
| 27 | room = pra.ShoeBox([3, 4, 5], max_order=2) |
| 28 | room.add_source([1.4, 2.2, 4.3]) |
| 29 | room.add_microphone([2.3, 3.5, 2.7]) |
| 30 | room.plot() |
| 31 | |
| 32 | def test_plot_walls_2d(self): |
| 33 | room = pra.ShoeBox([3, 4], max_order=2) |
nothing calls this directly
no test coverage detected