logo


  PROTO logo [ 
  exposedField MFString url             [ "index.html" ]
  exposedField SFVec3f     translation  0 0 0
  exposedField SFVec3f     scale            1 1 1
  ]{
  
  
  Transform {
  translation IS translation
  scale IS scale
  children [
  
  
  Anchor {
  url IS url
  children [
          Shape {
                     geometry Sphere { } ## default
                     appearance Appearance {
                          texture ImageTexture {
                                  ##loop TRUE
                                  url "@blaxxun.gif"
                          }
                  }
             }
  ] } ## end Anchor
  
  
  Transform { translation 0 -0.8 1.1 
   children [ Text { string "AE" } ]  }
  
  ] } ## end Transform
  }   ## end PROTO