Le 29/08/2021 à 05:40, Federico Miyara a écrit :

Dear All,

Is there any way to disable the grid on a surface generated using plot3d() or similar?

Sometimes it is useful, but when the grid where the data to plot are defined is too tight the black lines on the surface are way too invasive and the general appearance is almost black. I would expect a smooth surface, something like Sgrayplot() but in 3d.


Setting .thickness=0 is likely the simplest way to do it.

Using the first plot3d() example:

// simple plot using z=f(x,y)
t=[0:0.3:2*%pi]';
z=sin(t)*cos(t');
plot3d(t,t,z) gce().thickness = 0;

Samuel


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

Reply via email to