vol is of size vsize*vsize*vsize output an image to output_filename
(vol, output_filename)
| 201 | |
| 202 | |
| 203 | def pyplot_draw_volume(vol, output_filename): |
| 204 | """ vol is of size vsize*vsize*vsize |
| 205 | output an image to output_filename |
| 206 | """ |
| 207 | points = volume_to_point_cloud(vol) |
| 208 | pyplot_draw_point_cloud(points, output_filename) |
| 209 | |
| 210 | |
| 211 |
nothing calls this directly
no test coverage detected