Lets ARVR Program
Lets ARVR Program
VRML Basics
geometry Sphere {
radius 2
}
}
]
}
Class of Node
•1. Shapes
Geometry
Appearance
•2.Transformations
1. Lights
2. Groups
•3.Shapes
•Each Shape has a geometry field that contains geometry node and an appearance field that
contains an appearance node.
Shape {
appearance <some appearance>
geometry <some geometry>
}
Geometry Nodes
•Basic types
1. Box
2. Sphere
3. Cylinder
4. Cone
5. Text
Geometry Nodes…
•1.Box
defined by its size field
Box {
size 2.0 2.0 2.0
}
•2.Sphere
defined by its radius field
Sphere {
radius 1.5
}
Geometry Nodes…