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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
VRML V2.0 utf8
Viewpoint {
    position  0 0 15
    jump FALSE
    description "front_1"
}
     
 
Viewpoint {
    position  15 0 15
    orientation 0 1 10 0.785
    jump FALSE
    description "front_2"
}
 
 
Viewpoint {
    position  0 13 13
    orientation 1 0 0 -0.785
    jump FALSE
    description "front_3"
}
 
Viewpoint {
    position  -11 0 11
    orientation 0 1 0 -0.785
    jump FALSE
    description "front_4"
}
 
 
 
Viewpoint {
    position  0 -9 9
    orientation 1 0 0 0.785
    jump FALSE
    description "front_5"
}
 
 
Viewpoint {
    position  7 0 7
    orientation 0 1 0 0.785
    jump FALSE
    description "front_6"
}
 
Viewpoint {
    position  0 5 5
    orientation 1 0 0 -0.785
    jump FALSE
    description "front_7"
}
 
 
 
 
Viewpoint {
    position  -3 0 3
    orientation 0 1 0 -0.785
    jump FALSE
    description "front_8"
}
 
Viewpoint {
    position  0 -1 1
    orientation 0 1 0 0.785
    jump FALSE
    description "front_9"
}
 
 
Viewpoint {
    position  0.1 0 0.1
    orientation 0 1 0 0.785
    jump FALSE
    description "front_10"
}
 
 
 
Transform
{
    translation -3 -1 0
    children
    [
        Shape
        {
            geometry Text
            {
                string "Dept. of Multimedia"
                fontStyle FontStyle
                {
                    style "ITALIC"
                }
            }
            appearance Appearance {
                material Material {
                    diffuseColor  1 1 0
                }
            }
        }
    ]
}
 
 
 
 
 
Shape
{
    geometry Box
    {
        size  10 0.1 0.1
    }
    appearance Appearance
    {
        material Material
        {
            diffuseColor 1 0 0
        }
    }
}
 
 
 
Shape
{
    geometry Box
    {
        size  0.1 10 0.1
    }
    appearance Appearance
    {
        material Material
        {
            diffuseColor 0 1 0
        }
    }
 
}
 
 
 
Shape
{
    geometry Box
    {
        size  0.1 0.1 10
    }
    appearance Appearance
    {
        material Material
        {
            diffuseColor 0 0 1
        }
    }
 
}








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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#VRML V2.0 utf8
 
Shape
{
    geometry Box
    {
        size  10 0.1 0.1
    }
    appearance Appearance
    {
        material Material
        {
            diffuseColor 1 0 0
        }
    }
}
 
 
 
Shape
{
    geometry Box
    {
        size  0.1 10 0.1
    }
    appearance Appearance
    {
        material Material
        {
            diffuseColor 0 1 0
        }
    }
 
}
 
 
 
Shape
{
    geometry Box
    {
        size  0.1 0.1 10
    }
    appearance Appearance
    {
        material Material
        {
            diffuseColor 0 0 1
        }
    }
 
}
 
 
 
 
 
Transform {
    center  2 0 0
    translation -2 0 0
    children
    [
        Shape
        {
            geometry  Cylinder
            {
                height 1
                radius 1
            }
            appearance Appearance
            {
                material Material
                {
                    diffuseColor 1.0 0.0 0.0
                }
 
            }
 
        }
    ]
}




Posted by 코딩하는 야구쟁이
,