Ambient Lights

AmbientLight extends the Light class



TransformGroup group = new TransformGroup( );
. . .
AmbientLight light = new AmbientLight( );
light.setEnable( true );
light.setColor( new Color3f( 1.0f, 1.0f, 1.
0f ) );
. . .
light.setInfluencingBounds( bounds );
group.addChild( light );