MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: New graphics primitive: "Curve"?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg79277] Re: New graphics primitive: "Curve"?
  • From: Bill Rowe <readnewsciv at sbcglobal.net>
  • Date: Mon, 23 Jul 2007 03:43:28 -0400 (EDT)

On 7/22/07 at 4:18 AM, siegman at stanford.edu (AES) wrote:

>I'd like to create named graphics elements ["curves"] that would
>contain the graphic content of just a single curve in a Plot or
>ParametricPlot (no axes or anything else, just the data curve), and
>that could then be displayed as graphics elements like pseudo
>primitives, e.g.

>curveA = Graphics[<some coding>] curveB = Graphics[<more coding>]
>Show[curveA, curveB, <other graphics stuff>]

>What might be preferred ways to do this?

A simple way to achieve this would be:

curveA = Plot[x^2, {x, -2, 2}, Axes->None]

similarly with ParametricPlot

ParametricPlot[{3 Cos[t], 2 Sin[t]}, {t, 0, 2 Pi}, Axes->None]
--
To reply via email subtract one hundred and four


  • Prev by Date: Searching list for closest match to p
  • Next by Date: Re: Re: export data to spreadsheet
  • Previous by thread: Re: Searching list for closest match to p
  • Next by thread: Re: New graphics primitive: "Curve"?