Configure the view of the given scene. Parameters ---------- figure : object The scene which is modified. %(azimuth)s %(elevation)s %(focalpoint)s %(distance)s %(roll)s
(
figure,
azimuth=None,
elevation=None,
focalpoint=None,
distance=None,
roll=None,
)
| 254 | |
| 255 | @fill_doc |
| 256 | def set_3d_view( |
| 257 | figure, |
| 258 | azimuth=None, |
| 259 | elevation=None, |
| 260 | focalpoint=None, |
| 261 | distance=None, |
| 262 | roll=None, |
| 263 | ): |
| 264 | """Configure the view of the given scene. |
| 265 | |
| 266 | Parameters |
| 267 | ---------- |
| 268 | figure : object |
| 269 | The scene which is modified. |
| 270 | %(azimuth)s |
| 271 | %(elevation)s |
| 272 | %(focalpoint)s |
| 273 | %(distance)s |
| 274 | %(roll)s |
| 275 | """ |
| 276 | backend._set_3d_view( |
| 277 | figure=figure, |
| 278 | azimuth=azimuth, |
| 279 | elevation=elevation, |
| 280 | focalpoint=focalpoint, |
| 281 | distance=distance, |
| 282 | roll=roll, |
| 283 | ) |
| 284 | |
| 285 | |
| 286 | @fill_doc |
no outgoing calls
no test coverage detected