The room wall that you have clicked on was formed using an extrusion.
Basically, an extrusion constructs an object from a list of points. The VRML code to
construct the wall is:
The crossSection field specifies the list of points. Basically, you list all the points of your object (in this case, all the interior and exterior points of the wall). The spine field specifies how to create an extruded shape from the crosssection. In the code above, the spine is described as starting from the origin and extruding 2 units in the Y axis.
You will also note that the face of the wall contains a textured surface.
the material node contains a
ImageTexture field that maps a texture image to the face of an object.
The relevant code for texture mapping in the appearance node is as
follows:
Note that the diffuseColor attribute is overwridden by the ImageTexture attribute.
show me the basic wall without the rest of the world