#4875: Polyhedron.show(fill=True) fails
-----------------------+----------------------------------------------------
Reporter: abergeron | Owner: was
Type: defect | Status: new
Priority: major | Milestone: sage-3.4.1
Component: graphics | Keywords:
-----------------------+----------------------------------------------------
Comment(by wcauchois):
Oh, here's an example of manually altering
triangulated_facial_incidences() so that show(fill=True) works:
{{{
P = Polyhedron(vertices = [[1, 2, 3], [0,1,0], [1,1,1]])
P.triangulated_facial_incidences()
# the method caches its result in this private variable
P._triangulated_facial_incidences = [[0, [0, 1, 2]]]
P.show(fill=True)
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4875#comment:3>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---