I can't find anything anywere.
I've also checked Euler Circles.
What am I missing?
Thank you,
Art
For example,
left:=(x+1)^2+y^2<2:
right:=(x-1)^2+y^2<2:
top:=x^2+(y-sqrt(3))^2<2:
f:=piecewise(top and right,1):
with(plots):
display(implicitplot({left,top,right},x=-3..3,y=-2..4,
color=brown,numpoints=10^5),
implicitplot(f>0.5,x=-3..3,y=-2..4,
filled=true,coloring=[brown,white],numpoints=10^5),
axes=none);
See also my blog at Mapleprimes,
http://www.mapleprimes.com/blog/alec/how_to_color_a_region
Alec
Thanks!
>I was thinking of a logical answer...Or, using sets.
> Can Maple come up with a diagram given set data?
> On Sun, 26 Nov 2006 22:40:14 GMT, "Alec Mihailovs"
> <al...@mihailovs.com> wrote:
>>f:=piecewise(top and right,1):
top and right is logic, isn't it? If you use A, B, and C instead of left,
top, and right, that would be B and C - why do you think that it is not
logic?
You could also use axes=boxed (with no tickmarks), to make them inside a
square if necessary. Any other logical statement can be used, such as
not (A and B) or not (A and C).
What's wrong with that?
Alec