-
Notifications
You must be signed in to change notification settings - Fork 1
/
shapes.x3d
42 lines (42 loc) · 1.16 KB
/
shapes.x3d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<Scene>
<Transform translation="0.0 0.0 0.0">
<Shape DEF='bigCube'>
<Appearance>
<Material/>
</Appearance>
<Box size="3 3 3"/>
</Shape>
</Transform>
<Transform translation="6.0 1.0 0.5">
<Shape DEF='cone'>
<Appearance>
<Material/>
</Appearance>
<Cone/>
</Shape>
</Transform>
<Transform translation="14.0 2.0 -2.0">
<Shape DEF='cylinder'>
<Appearance>
<Material/>
</Appearance>
<Cylinder/>
</Shape>
</Transform>
<Transform translation="18.0 -2.0 0.0">
<Shape DEF='cube'>
<Appearance>
<Material/>
</Appearance>
<Box/>
</Shape>
</Transform>
<Transform translation="26.0 0.0 0.0">
<Shape DEF='sphere'>
<Appearance>
<Material/>
</Appearance>
<Sphere/>
</Shape>
</Transform>
</Scene>