Examples of PointLight


Examples of org.apache.batik.ext.awt.image.PointLight

            double y = convertNumber(lightElement, SVG_Y_ATTRIBUTE, 0);

            // 'z' attribute - default is 0
            double z = convertNumber(lightElement, SVG_Z_ATTRIBUTE, 0);

            return new PointLight(x, y, z, color);
        }
View Full Code Here

Examples of org.apache.batik.ext.awt.image.PointLight

            double y = convertNumber(lightElement, SVG_Y_ATTRIBUTE, 0);

            // 'z' attribute - default is 0
            double z = convertNumber(lightElement, SVG_Z_ATTRIBUTE, 0);

            return new PointLight(x, y, z, color);
        }
View Full Code Here

Examples of org.apache.flex.forks.batik.ext.awt.image.PointLight

            double y = convertNumber(lightElement, SVG_Y_ATTRIBUTE, 0);

            // 'z' attribute - default is 0
            double z = convertNumber(lightElement, SVG_Z_ATTRIBUTE, 0);

            return new PointLight(x, y, z, color);
        }
View Full Code Here

Examples of org.apache.flex.forks.batik.ext.awt.image.PointLight

            double y = convertNumber(lightElement, SVG_Y_ATTRIBUTE, 0, ctx);

            // 'z' attribute - default is 0
            double z = convertNumber(lightElement, SVG_Z_ATTRIBUTE, 0, ctx);

            return new PointLight(x, y, z, color);
        }
View Full Code Here

Examples of org.xith3d.scenegraph.PointLight

        this.addChild(terrainGfx);
       
        /*
         * Lighting
         */
        pointLight = new PointLight(1f, 1f, 1f, 0f, 0f, 0f, .01f);
        this.addChild(pointLight);
       
        /*
         * Digibots
         */
 
View Full Code Here

Examples of org.xith3d.scenegraph.PointLight

        /*
         * GFX
         */
        env.getView().lookAt(new Point3f(5f, 5f, 5f), new Point3f(), new Point3f(0f, 0f, 1f));
        group = env.addPerspectiveBranch().getBranchGroup();
        group.addChild(new PointLight(1f, 1f, 1f, 10f, 10f, 45f, .001f));
       
        this.setStopOperation(RenderLoop.StopOperation.DESTROY_AND_EXIT);
        this.begin();
       
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.