Main Content

saveas (Aero.VirtualRealityAnimation)

Save virtual reality world associated with virtual reality animation object

Syntax

saveas(h, filename)
h.saveas(filename)
saveas(h, filename, '-nothumbnail')
h.saveas(filename, '-nothumbnail')

Description

saveas(h, filename) and h.saveas(filename) save the world associated with the virtual reality animation object, h, into the .wrl file name specified in the filename variable. After saving, this function reinitializes the virtual reality animation object from the saved world.

saveas(h, filename, '-nothumbnail') and h.saveas(filename, '-nothumbnail') suppress creating a thumbnail image used for virtual world preview.

Examples

collapse all

This example shows how to save the world associated with h.

h = Aero.VirtualRealityAnimation;
h.VRWorldFilename = 'asttkoff.wrl';
h.initialize();
h.saveas([tempdir,'my_asttkoff.wrl']);

Figure VR Plane Take-Off contains objects of type hgjavacomponent, uimenu, uipanel, uitoolbar.

Version History

Introduced in R2007b