1#Inventor V2.1 ascii
2
3# Check all aspects of rendering with SoLevelOfDetail nodes.
4#
5# 19990504 mortene
6
7Separator {
8   BaseColor { rgb 1 0 0 }
9   DEF screenlod LevelOfDetail {
10      screenArea [ 2000, 1000, 500, 250 ]
11
12      Text3 { string "4" }
13      Text3 { string "3" }
14      Text3 { string "2" }
15      Text3 { string "1" }
16      Text3 { string "0" }
17   }
18
19   DEF rtrans Translation { translation +4 0 0 }
20
21   Complexity { type BOUNDING_BOX }
22   USE rtrans
23   BaseColor { rgb 0 1 0 }
24   USE screenlod
25
26   Complexity {
27      type OBJECT_SPACE
28      value 1.0
29   }
30   USE rtrans
31   BaseColor { rgb 0 0 1 }
32   USE screenlod
33
34   Complexity {
35      type OBJECT_SPACE
36      value 0.8
37   }
38   USE rtrans
39   BaseColor { rgb 1 1 0 }
40   USE screenlod
41
42   Complexity {
43      type OBJECT_SPACE
44      value 0.6
45   }
46   USE rtrans
47   BaseColor { rgb 1 0 1 }
48   USE screenlod
49
50   Complexity {
51      type OBJECT_SPACE
52      value 0.4
53   }
54   USE rtrans
55   BaseColor { rgb 0 1 1 }
56   USE screenlod
57
58   Complexity {
59      type OBJECT_SPACE
60      value 0.2
61   }
62   USE rtrans
63   BaseColor { rgb 1 1 1 }
64   USE screenlod
65
66   Complexity {
67      type OBJECT_SPACE
68      value 0.0
69   }
70   USE rtrans
71   USE screenlod
72}
73