How do I load a .wrl file on to a GUI?
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Golnar
il 10 Apr 2014
Modificato: Sean de Wolski
il 10 Apr 2014
I have a .wrl file I'd like to show up in the 'axes' section of a GUI. Is this possible?
0 Commenti
Risposta accettata
Sean de Wolski
il 10 Apr 2014
Modificato: Sean de Wolski
il 10 Apr 2014
set(gcf,'Units','pixels');
vrObjects.world = vrworld('spring.wrl');
open(vrObjects.world);
vrObjects.canvas = vr.canvas(vrObjects.world, gcf, [50 80 425 225]);
vrObjects.spring = vrnode(vrObjects.world,'spring');
Small example..
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!