|
| 1 | +# noqa: INP001 |
1 | 2 | """ |
2 | 3 | Instantiating a Plot3d Object |
3 | 4 | ============================= |
|
12 | 13 |
|
13 | 14 | # %% |
14 | 15 | # .. note:: |
15 | | -# As stated throughout the **pyvisual** documentation site, it is *highly* recommended to explore the |
16 | | -# `PyVista <https://docs.pyvista.org/>`_ documentation to learn about the extensive capabilities |
17 | | -# provided by the PyVista and VTK libraries. **pyvisual** is but a thin wrapper around a small |
18 | | -# subset of these capabilities, and thus, learning about the underlying libraries will allow you to |
19 | | -# make the most of **pyvisual**. |
| 16 | +# As stated throughout the **pyvisual** documentation site, it is *highly* recommended to |
| 17 | +# explore the `PyVista <https://docs.pyvista.org/>`_ documentation to learn about the |
| 18 | +# extensive capabilities provided by the PyVista and VTK libraries. **pyvisual** is but a |
| 19 | +# thin wrapper around a small subset of these capabilities, and thus, learning about the |
| 20 | +# underlying libraries will allow you to make the most of **pyvisual**. |
20 | 21 |
|
21 | 22 | # %% |
22 | 23 | # The Plot3d class inherits from :class:`~pyvista.Plotter` and, therefore, can be instantiated |
|
42 | 43 | plotter.show() |
43 | 44 |
|
44 | 45 | # %% |
45 | | -# By capturing the returned result of the :meth:`~pyvisual.core.plot3d.Plot3d.add_sun` method, we can |
46 | | -# manipulate the sun actor after it has been added to the scene. For example, we can remove it |
47 | | -# from the scene and then add it back again. |
| 46 | +# By capturing the returned result of the :meth:`~pyvisual.core.plot3d.Plot3d.add_sun` method, |
| 47 | +# we can manipulate the sun actor after it has been added to the scene. For example, we can |
| 48 | +# remove it from the scene and then add it back again. |
48 | 49 |
|
49 | 50 | # sphinx_gallery_start_ignore |
50 | 51 | # NOTE: The following code block can be removed when run outside the sphinx gallery pipeline. |
|
0 commit comments