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


xdel();
cf=figure('position',[100 100 1200 800],'background',8);
ca=gca();
x=[0 1 0]; y=[0 0 1]; z=[1 1 1];
for i=1:8
  plot3d(x',y',z'*i/5)
  ca.box="off";    ca.axes_visible = ["off","off","off"];
  caxl=ca.x_label; caxl.visible="off";  cayl=ca.y_label; cayl.visible="off";   
cazl=ca.z_label; cazl.visible="off";
  xtitle('Click into figure and watch twinkling.')
  ca.isoview='on';
  xclick()
end


Kind regards
Jens
_______________________________________________
users mailing list
[email protected]
http://lists.scilab.org/mailman/listinfo/users

Reply via email to