You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# works as advertised
sage: region_plot([x^2+y^2<1, x<y], (x,-2,2), (y,-2,2),aspect_ratio=1)
# (Correctly) doesnt complain about a single function
sage: region_plot([x^2+y^2<1], (x,-2,2), (y,-2,2),aspect_ratio=1)
# using many functions is ok
sage: region_plot([x^2+y^2<1, x<y, x>-1/2, y>0], (x,-2,2), (y,-2,2),aspect_ratio=1)
# displays a portion of the last example properly
sage: region_plot([x^2+y^2<1, x<y, x>-1/2, y>0], (x,0,2), (y,-2,2),aspect_ratio=1)
# a little computer art - my picture of a whale ;-)
sage: region_plot([x^2+y^2<10, y< sin(x)], (x,-5,5), (y,-4,4),aspect_ratio=1)
This is inconsistent with other plotting functions.
Component: graphics
Reviewer: Ross Kyprianou
Issue created by migration from https://trac.sagemath.org/ticket/7807
The text was updated successfully, but these errors were encountered: