Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How to close wrl in gui
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
cc = vrworld('cube.wrl');
open(cc);
c1 = vr.canvas(cc, gcf,[200 240 320 240]);
set(c1,'Units','normalized')
guidata(hObject, handles);
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
close(cc);
Can't working
Help Please ...
0 comentarios
Respuestas (2)
Walter Roberson
el 12 de Mayo de 2012
open() requires an argument that is the name of a file or variable.
Perhaps you want open(cc)
0 comentarios
Taewa kaewplang
el 12 de Mayo de 2012
1 comentario
Walter Roberson
el 12 de Mayo de 2012
"myworld" is local to the workspace of pushbutton1_Callback
Please read through
http://matlab.wikia.com/wiki/FAQ
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!