How do I load a .wrl file on to a GUI?
조회 수: 6 (최근 30일)
이전 댓글 표시
I have a .wrl file I'd like to show up in the 'axes' section of a GUI. Is this possible?
댓글 수: 0
채택된 답변
Sean de Wolski
2014년 4월 10일
편집: Sean de Wolski
2014년 4월 10일
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
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!