octave-maintainers
[Top][All Lists]
Advanced

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

Re: fltk erases subplots


From: Juan Pablo Carbajal
Subject: Re: fltk erases subplots
Date: Tue, 16 Dec 2014 15:14:47 +0100

On Tue, Dec 16, 2014 at 3:05 PM, Andreas Weber <address@hidden> wrote:
> Am 16.12.2014 um 14:56 schrieb Juan Pablo Carbajal:
>> FLTK has a weird behavior with subplots.
>> First it resizes them on the fly, but if that is disregarded as
>> "style" the following behavior is definitely a bug.
>>
>> order=[4 8 12 11 16 15 14 10 13 9 5 6 1 2 3 7];
>> for i=1:length(order);
>>   subplot(4,4,order(i));
>>   plot(randn(10,1));
>>   text(0,0,num2str(i));
>>   axis off;
>>   pause;
>> endfor
>>
>> If you ran that script you see that axes numbered 7 and 8 are plotted
>> but then erased when axes numbered 9 and 10 are created.
>
> I think its this bug report: https://savannah.gnu.org/bugs/?41128
> and/or this: https://savannah.gnu.org/bugs/index.php?42033
>
> -- Andy

Maybe the last one, but if you go through the plots in order there is
no problem!
So that bug might look as fixed now.
Problem is when you are going in reverse order through the plots.

Where is subplot for fltk implemented?



reply via email to

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