Scilab 5.4.1
- Ajuda Scilab
- Biblioteca de Gráficos
- 2d_plot
- 3d_plot
- annotation
- axes_operations
- axis
- bar_histogram
- Color management
- figure_operations
- geometric_shapes
- handle
- interaction
- load_save
- pie
- polygon
- property
- style
- text
- transform
- window_control
- Datatips
- GlobalProperty
- Graphics
- clear_pixmap
- graphics_entities
- object_editor
- show_pixmap
- twinkle
- xchange
- xclear
- xdel
- xget
- xgetech
- xgraduate
- xgrid
- xname
- xnumb
- xpause
- xsegs
- xset
- xsetech
- xsetm
- Compound properties
- pixel_drawing_mode
- Segments properties
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
show_pixmap
Envia o buffer de pixmap à tela
Seqüência de Chamamento
show_pixmap()
Descrição
Se a propriedade pixmap
de uma janela gráfica é
"on"
os desenhos são enviados à memória pixmap ao invés
da tela de exibição
A instrução show_pixmap()
envia o pixmap à
tela.
O modo pixmap pode ser usado para se obter animações suaves. Esta propriedade pode ser encontrada entre os campos de entidades da figura (ver figure_properties).
Exemplos
f=gcf();f.pixmap='on'; //ajustando o modo pixmap a=gca();a.data_bounds=[0 0; 10 10]; //construindo dois retângulos xrects([0;10;1;1],5);r1=gce();r1=r1.children; xrects([0;1;1;1],13);r2=gce();r2=r2.children; //laço de animação for k=1:1000 //desenhando os retângulos no buffer pixmap move(r1,[0.01,-0.01]);move(r2,[0.01,0.01]) //exibindo o buffer pixmap show_pixmap() end
Ver Também
- figure_properties — description of the graphics figure entity properties
- clear_pixmap — Apaga o buffer de pixmap ("mapa de píxeis")
Report an issue | ||
<< object_editor | Biblioteca de Gráficos | twinkle >> |