Ask Your Question

yuyu's profile - activity

2021-01-19 17:28:01 +0200 received badge  Student (source)
2021-01-19 16:00:37 +0200 received badge  Notable Question (source)
2017-10-10 02:31:36 +0200 received badge  Popular Question (source)
2015-11-08 14:44:26 +0200 received badge  Editor (source)
2015-11-08 14:44:04 +0200 asked a question Visualizing Polyhedron with specified range

I am working on visualizing an unbounded polyhedron with plot command. I have a trouble with the way the default visualizer plots the polyhedron. I would like to define range of (x,y,z) domain it visualizes as well as remove big blue arrow that indicates the direction on which the polyhedron extends to because unboundedness is obvious in my application.

The code I have used is following.

dd = Polyhedron(ieqs=[[0,1,-sqrt(2),0],[0,1,sqrt(2),0],[0,0,-sqrt(2),1],[0,0,sqrt(2),1]]) dd.plot(ymax=4)