Implicit Plot boxed
implicit_plot seems to be boxed. Is there a way to have the box removed ? I haven't seen any option fo that.
implicit_plot seems to be boxed. Is there a way to have the box removed ? I haven't seen any option fo that.
There exists the option frame
, which, in fact, you can directly use in show
. Try:
var("x,y")
implicit_plot(x^2-y^2-1, (x,-2,2), (y,-2,2), frame=False, axes=True)
Asked: 5 years ago
Seen: 212 times
Last updated: Apr 11 '20