Why is zbuffer no longer available in 2014b? I need it. Thanks!
Mostrar comentarios más antiguos
I installed matlab 2014b and when opening an old figure it looked much different, and then I realized it was now rendered with OpenGL when it used to be in zbuffer. But surprisingly, in release 2014b, the zbuffer option is no longer available! (at least in the dropdown list of the property inspector). Only painters and OpenGL. Why did you remove zbuffer? I need it! Thanks.
1 comentario
Sean de Wolski
el 6 de En. de 2015
What do you need it for?
Respuesta aceptada
Más respuestas (1)
Mariano
el 9 de En. de 2015
0 votos
1 comentario
Mike Garrity
el 12 de En. de 2015
Editada: Mike Garrity
el 12 de En. de 2015
That sounds like the new ClippingStyle property. You can set it to either 'rectangle', to get the behavior that zbuffer was giving you, or '3dbox' to clip against the ZLim. Consider this example:
line([0 1],[0 1],[0 1])
xlim([0 1])
ylim([0 1])
zlim([.25 .75])
Now setting ClippingStyle to 3dbox (the default) yields this:
set(gca,'ClippingStyle','3dbox')

And setting ClippingStyle to rectangle yields this:
set(gca,'ClippingStyle','rectangle')

It's a little more complicated than this because all of the renderers had bugs in this area in earlier releases, but I think that you probably want to be using ClippingStyle instead of Renderer.
Categorías
Más información sobre Graphics Performance en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
