Package javax.media.opengl.awt

Examples of javax.media.opengl.awt.GLJPanel


        super();
        formatter = NumberFormat.getNumberInstance();
        formatter.setMaximumFractionDigits(1);

        //Init GLJPanel as the drawable
        gljPanel = new GLJPanel(getCaps(), null, null) {
            //@Override
            @Override
            public void paintComponent(Graphics g) {
                Graphics2D g2d = (Graphics2D) g;
                render2DBackground(g2d);
View Full Code Here

TOP

Related Classes of javax.media.opengl.awt.GLJPanel

Copyright © 2018 www.massapicom. 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.