Re: fill circle while using circle command
- To: mathgroup at smc.vnet.net
- Subject: [mg74255] Re: fill circle while using circle command
- From: "ragfield" <ragfield at gmail.com>
- Date: Thu, 15 Mar 2007 19:09:25 -0500 (EST)
- References: <etb5pe$kfr$1@smc.vnet.net>
On Mar 15, 4:05 am, "Tony Harris" <tdh1... at bellsouth.net> wrote:
> I sure would appreciate it if someone can tell me how to fill a circle
> while using the Graphics command, "circle".
>
> Here is what I used to generate a circle centered at (2,0) with a radius
> of 1.
> Show[Graphics[Circle[{2, 0}, 1]]];
Disk is the graphics primitive you want:
Show[Graphics[Disk[{2, 0}, 1]]]
-Rob