Re: [Scilab-users] Untwinkle a sequence of graphics

2016-12-10 Thread Jens Simon Strom

Hallo Samuel,
That works perfectly. Thanks a lot! Tuning graphics is always a big 
challenge - consuming more time than the mathematical part.

Kind regards
Jens

Am 10.12.2016 14:46, schrieb Samuel Gougeon:

Hello Jens,

Le 10/12/2016 11:55, Jens Simon Strom a écrit :

Hallo Scilab experts,
How would you avoid the 'twinkling'  when clicking for the next image?


For instance by using plot3d() options:
xdel();
figure('position',[100  100  1200  800],'background',-2);
xtitle('Click into figure and watch twinkling.')
x  =  [0  1  0];  
y  =  [0  0  1];  
z  =  [1  1  1];
for  i  =  1:8  
   plot3d(x',  y',z'*i/5,flag=[2  4  0],leg="@@")

   xclick()
end
SG



___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] Untwinkle a sequence of graphics

2016-12-10 Thread Samuel Gougeon

Hello Jens,

Le 10/12/2016 11:55, Jens Simon Strom a écrit :

Hallo Scilab experts,
How would you avoid the 'twinkling'  when clicking for the next image?


For instance by using plot3d() options:

xdel();
figure('position',[100  100  1200  800],'background',-2);
xtitle('Click into figure and watch twinkling.')
x  =  [0  1  0];  
y  =  [0  0  1];  
z  =  [1  1  1];
for  i  =  1:8  
  plot3d(x',y', z'*i/5, flag=[2  4  0], leg="@@")

  xclick()
end

SG

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users