Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Put '# not tested' in the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Apr 15, 2021
1 parent eb88cfe commit 3d5f3c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sage/geometry/polyhedron/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -10448,8 +10448,9 @@ def affine_hull_manifold(self, name=None, latex_name=None, start_index=0, ambien
sage: submanifolds = [
....: F.as_polyhedron().affine_hull_manifold(name=f'F{i}', orthogonal=True, ambient_space=E3)
....: for i, F in enumerate(D.facets())]
sage: sum(FM.plot({}, srange(-2, 2, 0.1), srange(-2, 2, 0.1), opacity=0.2)
....: for FM in submanifolds) + D.plot() # not tested
sage: sum(FM.plot({}, srange(-2, 2, 0.1), srange(-2, 2, 0.1), opacity=0.2) # not tested
....: for FM in submanifolds) + D.plot()
Graphics3d Object
"""
if ambient_space is None:
Expand Down

0 comments on commit 3d5f3c4

Please sign in to comment.