# # #[return] #
#ex-defuse.wrl
# example of use of DEF and USE for instancing and sharing nodes

#VRML V2.0 utf8

Viewpoint {}
Transform {
#   translation 1 0 0
   children [
      DEF Fab Shape { 
                 geometry Cylinder {}
                 appearance  Appearance {
                          material Material { 
                                    diffuseColor 0 0 1} # Blue
                                         }
                     }
            Transform{
              translation 3 2 0
              children USE Fab
                      }
              ]
             }
#