Re: PlotPoints in plot
- To: mathgroup at smc.vnet.net
- Subject: [mg48592] Re: PlotPoints in plot
- From: Bill Rowe <readnewsciv at earthlink.net>
- Date: Sat, 5 Jun 2004 19:58:15 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
On 6/5/04 at 7:20 AM, drbob at bigfoot.com (DrBob) wrote: >I'm thinking you'll have to pick your points manually, something >like this: >Show[Graphics[Line@Table[{x, Sqrt[1 - x^2]}, {x, -1, 1}]]] To create a closed polygon, you need something like: Show[Graphics[Line@Join[#,{First@#}]&@Table[{x, Sqrt[1 - x^2]}, {x, -1, 1}]]] -- To reply via email subtract one hundred and four