Brauche Hilfe bei VRML 2

Status
Nicht offen für weitere Antworten.
S

[-)Schildkröte(-]

Hi Leute!
Da ich zurzeit Ferien habe, wollte ich ein bischen mit VRML herum experimentieren. Jedoch kahm ich bei einer Meiner Übungen nicht weiter. Könnt ihr mir sagen welcher Fehler in Line 190 ist??

Hier ist aber erstmal meine Datei

Code:
#VRML V2.0 utf8

NavigationInfo {type "EXAMINE"
              headlight TRUE}
Transform {
   translation 0 0 0
      children [
        DEF Kegel Group { 
         children [         
          Transform { # left down front
            translation  2 0 0
            rotation     0 0 1  1.5708
                                       
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
                                                     
          Transform { # left right front
            translation   -2 0 0
            rotation      0 0 -1  1.5708
                                             
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
          Transform { # right up front
            translation  2 2 0
            rotation     0 0 1  1.5708
                                              
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
                            
          Transform { # left up front
            translation   -2 2 0
            rotation      0 0 -1  1.5708
                                                   
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
          Transform { # right down behind
            translation  2 0 2
            rotation     0 0 1  1.5708
                                               
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
                     
          Transform { # left down behind
            translation   -2 0 2
            rotation      0 0 -1  1.5708
                           
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
          Transform { # right up behind
            translation  2 2 2
            rotation     0 0 1  1.5708
                             
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
                        
          Transform { #left up behind
            translation   -2 2 2
            rotation      0 0 -1  1.5708
                     
            children [
               Shape {
                  appearance Appearance {
                     material Material {
                        diffuseColor 1 1 1
                        shininess    1
                        transparency 0.1
                     } # material
                  } # appearance
                     geometry Cone {
                        bottomRadius 1
                        height       2
                        side         TRUE
                        bottom       TRUE
                     } # Cone
               } # Shape
            ] # children
          } # Transform
        } # Group
           
        Transform {
         translation 4 0 0
         children [
            USE Kegel
         ] # children
}Transform



Da Oben, wo der Knoten } # Group endet, soll ein Fehler sein.

Ich finde ihn aber nicht.
Ich hoffe jemand kann mir weiterhelfen. Ich danke schon Jetzt!! :)
 
Status
Nicht offen für weitere Antworten.
Zurück