getView().lookAt( new Vector3f( 0f, 0f, 1f ), new Vector3f( 0f, 0f, 0f ), new Vector3f( 0f, 1f, 0f ) );
}
public BranchGroup createScene() {
BranchGroup branchGroup = new BranchGroup();
Rectangle rectangle = new Rectangle(1f, 1f, 0f, ResBag.getTexture( Textures.BACKGROUND_IMAGE.toString() ));
//BackgroundImage backgroundImage = new BackgroundImage( ResBag.getTexture( Textures.BACKGROUND_IMAGE.toString() ), 1f );
branchGroup.addChild( rectangle );
return branchGroup;
}