How do I load a .wrl file on to a GUI?

조회 수: 6 (최근 30일)
Golnar
Golnar 2014년 4월 10일
편집: Sean de Wolski 2014년 4월 10일
I have a .wrl file I'd like to show up in the 'axes' section of a GUI. Is this possible?

채택된 답변

Sean de Wolski
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개)

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by