Background background=new Background(new Color3f(0.05f,0.05f,0.2f));
ImageComponent2D image=new ImageComponent2D( ImageComponent2D.FORMAT_RGB,someImage); // someImage は BufferedImage オブジェクト // (BufferedImage は JDK 1.2 から追加されたクラスです) Background background=new Background(image);
BoundingSphere bounds=new BoundingSphere( new Point3d(0.0,0.0,0.0),100.0); // 原点を中心とする半径 100.0 の範囲 background.setApplicationBounds(bounds);
BoundingSphere bounds=new BoundingSphere( new Point3d(0.0,0.0,0.0),100.0); // 原点を中心とする半径 100.0 の範囲 Fog fog=new LinearFog(new Color3f(1.0f,1.0f,1.0f),1.7f,3.0f); fog.setInfluencingBounds(bounds);
戻る