Documentation

vrworld/open

Open virtual world

Syntax

open(vrworld_object)

Arguments

vrworld_object

Avrworldobject representing a virtual world.

Description

Theopenmethod opens the virtual world. When the virtual world is opened for the first time, the virtual world internal representation is created based on the associated virtual world 3D file.

If the input argument is an array of virtual world handles, all the virtual worlds associated with those handles are opened.

The virtual world must be open for you to use it. You can close the virtual world with the methodclose.

You can call the methodopenmore than once, but you must use an appropriate number ofclosecalls before the virtual world returns to a closed state.

Examples

Create twovrworldobjects by typing

myworld1 = vrworld('vrmount.wrl') myworld2 = vrworld('vrpend.wrl')

Next, create an array of virtual world handles by typing

myworlds = [myworld1 myworld2];

open(myworlds)opens both of these virtual worlds.

Introduced before R2006a