Polar plot (xfig example)

From Remeis-Wiki
Revision as of 11:13, 17 April 2018 by Obst (talk | contribs) (Obst moved page Polar plot to Polar plot (xfig example) without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Polar plot with 'xfig_polarplot_new'

Polarplot.png
   % Plot coordinate transformation
   variable min = 0,
            max = 180,
            dir = 1,
            org = 45;
   variable ang = [min:max:#100];
   variable rad = 0.5+0.5*sin(ang*PI/180);
   variable xf = xfig_polarplot_new(; min=min, max=max, origin=org, dir=dir, grid );
   xf.plot( rad*cos( dir*(ang+org)*PI/180 ),
            rad*sin( dir*(ang+org)*PI/180 ) ; color="red" );
   xf.render("/tmp/test.pdf");