From cc0a47e2686567c1a1616d11855231efd96d4658 Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Sat, 6 Aug 2022 21:23:15 -0700 Subject: [PATCH] src/sage/geometry/polyhedral_complex.py (exploded_plot): Fix doc of sticky_center --- src/sage/geometry/polyhedral_complex.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/sage/geometry/polyhedral_complex.py b/src/sage/geometry/polyhedral_complex.py index 42da369cb5b..f354ee28622 100644 --- a/src/sage/geometry/polyhedral_complex.py +++ b/src/sage/geometry/polyhedral_complex.py @@ -2488,8 +2488,9 @@ def exploded_plot(polyhedra, *, - ``sticky_vertices`` -- (default: ``False``) boolean or dict. Whether to draw line segments between shared vertices of the given polyhedra. A dict gives options for :func:`sage.plot.line`. - - ``sticky_center`` -- (default: ``True``) boolean or dict. Whether to draw line segments between ``center`` - and the vertices of the given polyhedra. A dict gives options for :func:`sage.plot.line`. + - ``sticky_center`` -- (default: ``True``) boolean or dict. When ``center`` is a vertex of some + of the polyhedra, whether to draw line segments connecting the ``center`` to the shifted copies + of these vertices. A dict gives options for :func:`sage.plot.line`. - ``color`` -- (default: ``None``) if ``"rainbow"``, assign a different color to every maximal cell and every vertex; otherwise, passed on to :meth:`~sage.geometry.polyhedron.base.Polyhedron_base.plot`.