Re: Coordinates from an ImplicitPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg39172] Re: Coordinates from an ImplicitPlot
- From: atelesforos at hotmail.com (Orestis Vantzos)
- Date: Sun, 2 Feb 2003 01:13:19 -0500 (EST)
- References: <b1f65f$aqd$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Let's say you have imp=ImplictPlot[...]; First use Graphics[imp] to turn the ContourGraphics object into a normal Graphics object. Now with Cases[Graphics[imp],_Line,Infinity] you can collect all the Line expressions that make the ImplicitPlot. I don't know what you want to do with the points, but this returns a simple 'flat' list with them: Cases[Graphics[imp],l_Line:>Sequence@@l[[1]],Infinity] Orestis Kay Orgassa <Kay.Orgassa at gmx.de> wrote in message news:<b1f65f$aqd$1 at smc.vnet.net>... > Does anyone know, how to extract the data points from an ImplicitPlot? > Thanks, Kay