Syntax
FILE FORMAT/DEFAULTS
Group {
}
Explanation

The Group node provides a container for the child nodes contained within it. It does not alter the traversal state in any way, shape, or form. State accumulated for a child during the traversal is passed on to each successive child and then to the parents of the group. Keep in mind that Group does not push or pop traversal state in the same manner as Separator does.

Example Use

The following code fragment is from 1Ribbons.wrl.

Group {
	Separator {
		MaterialBinding {
		value	OVERALL
		}
		Material {
			ambientColor 0.2 0.2 0.2~
			diffuseColor 1 0.327273 0
			specularColor 0 0 0 ~
			shininess 0.2 ~
			transparency 0 ~
		}
		Coordinate4 { ...
		}
	}
}
See Also

Separator