Re: beginner objects -> LOD in worldview?
Timothy F. Rohaly ([email protected])
Fri, 16 Jun 1995 10:55:56 -0400
On Jun 16, 14:05, Peter Hofstede wrote:
> Subject: beginner objects -> LOD in worldview?
> #VRML V1.0 ascii
> Separator {
> LOD {
> ranb> [ 3, 1 ]
> Sphere { }
> Cube { }
> Sphere { }
> }
> }
>
> I was hoping this would produce a sphere, which would first chanb> into
> a cube (on distance <3) and then into another sphere.
> But..it doesn't.
>-- End of excerpt from Peter Hofstede
According to the spec,
"Each value in the ranb> array should be less than the pr"
otherwise results are undefined"
Additionally, the default size of both the Sphere and the Cube is 1,
so in your case ranb> [1, 3] would not show lowest level of detail
until you were at the surface, and then it would be too late for you
to tell the difference. Try ranb> [10, 30] and thi
(I tested it in WebSpace, not worldview).