octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #39495] polar plot should have a circular rho/


From: Stefan Mahr
Subject: [Octave-bug-tracker] [bug #39495] polar plot should have a circular rho/theta axis
Date: Wed, 25 Jun 2014 22:26:15 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0

Follow-up Comment #14, bug #39495 (project octave):

I removed 'lim = 1.1 * rtick(end);' because this leads to problems with 'hold
on' plot: The axis get larger and larger with every plot.


polar(1:6,ones(1,6))
hold on
polar(1:6,ones(1,6))
polar(1:6,ones(1,6))


A solution could be to replace the 'oldxlim' stuff with following lines:


    if (! isprop (hax, "rtick"))
      addproperty ("rtick", hax, "data");
    endif
    
    oldrtick = max (get (hax,'rtick'));
    if (! isempty (oldrtick))
      maxr = max (maxr, oldrtick);
    endif



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?39495>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]