# Pared
Shape {
appearance DEF Brick Appearance {
texture ImageTexture { url "brick.jpg" }
}
geometry IndexedFaceSet {. . . }
}
# Arbol derecha
Transform {
translation 3.5 0.0 0.0
children [
Billboard { children [
Shape {
appearance Appearance {
texture ImageTexture { url "tree1.png" }
}
geometry DEF TreeFace IndexedFaceSet {... }
}
] }
] }
# Arbol medio
Transform {
children [
Billboard { children [
Shape {
appearance Appearance {
texture ImageTexture { url "tree1.jpg" }
}
geometry USE TreeFace
}
] }
] }
# Arbol izquierda
Transform {
translation -3.5 0.0 0.0
children [
Billboard { children
[
Shape { geometry USE TreeFace }
] }
] }
. |