1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#X3D V3.2 utf8
PROFILE Interchange
# Note that change_vrml_by_code.lpr depends on this,
# (we could alternatively call Scene.ResetWorldTime(0) in change_vrml_by_code
# after loading), otherwise Scene.WorldTime.Seconds is wildly large.
KambiNavigationInfo { timeOriginAtLoad TRUE }
DEF Box1 Shape {
appearance Appearance { material Material { } }
geometry Box { size 1 10 1 }
}
DEF Box2Transform Transform { translation 2 0 0 rotation 1 0 0 0 children USE Box1 }
DEF Box3Transform Transform { translation 4 0 0 rotation 1 0 0 0 children USE Box1 }
DEF Box4Transform Transform { translation 6 0 0 rotation 1 0 0 0 children USE Box1 }
|