[Scilab-users] disable grid in 3d plot

Samuel Gougeon sgougeon at free.fr
Mon Aug 30 10:05:35 CEST 2021


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


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.scilab.org/pipermail/users/attachments/20210830/196062a5/attachment.htm>


More information about the users mailing list