@@ -687,7 +687,6 @@ def plot(
687
687
screenshot : str | None = None ,
688
688
use_trame : bool | None = None ,
689
689
use_service_colors : bool | None = None ,
690
- show_options : dict | None = {},
691
690
** plotting_options : dict | None ,
692
691
) -> None :
693
692
"""Plot the body.
@@ -709,8 +708,6 @@ def plot(
709
708
Whether to use the colors assigned to the body in the service. The default
710
709
is ``None``, in which case the ``ansys.geometry.core.USE_SERVICE_COLORS``
711
710
global setting is used.
712
- show_options : dict, default: {}
713
- Keyword arguments for the show method of the plotter.
714
711
**plotting_options : dict, default: None
715
712
Keyword arguments for plotting. For allowable keyword arguments, see the
716
713
:meth:`Plotter.add_mesh <pyvista.Plotter.add_mesh>` method.
@@ -1331,7 +1328,6 @@ def plot( # noqa: D102
1331
1328
screenshot : str | None = None ,
1332
1329
use_trame : bool | None = None ,
1333
1330
use_service_colors : bool | None = None ,
1334
- show_options : dict | None = {},
1335
1331
** plotting_options : dict | None ,
1336
1332
) -> None :
1337
1333
raise NotImplementedError (
@@ -1796,7 +1792,6 @@ def plot( # noqa: D102
1796
1792
screenshot : str | None = None ,
1797
1793
use_trame : bool | None = None ,
1798
1794
use_service_colors : bool | None = None ,
1799
- show_options : dict | None = {},
1800
1795
** plotting_options : dict | None ,
1801
1796
) -> None :
1802
1797
# lazy import here to improve initial module load time
@@ -1828,7 +1823,7 @@ def plot( # noqa: D102
1828
1823
)
1829
1824
pl = GeometryPlotter (use_trame = use_trame , use_service_colors = use_service_colors )
1830
1825
pl .plot (mesh_object , ** plotting_options )
1831
- pl .show (screenshot = screenshot , ** show_options )
1826
+ pl .show (screenshot = screenshot , ** plotting_options )
1832
1827
1833
1828
def intersect (self , other : Union ["Body" , Iterable ["Body" ]], keep_other : bool = False ) -> None : # noqa: D102
1834
1829
if self ._template ._grpc_client .backend_version < __TEMPORARY_BOOL_OPS_FIX__ :
0 commit comments