Examples of Colorf


Examples of org.openmali.vecmath2.Colorf

        /*
         * UI
         */
        status = new Label(290f, 100f);
        status.setLocation(480f, 130f);
        status.setBackgroundColor(new Colorf(1f, 1f, 1f, .5f));
        status.setFontColor(Colorf.BLACK);
        status.setZIndex(2);
       
        /*
         * Physics
 
View Full Code Here

Examples of org.openmali.vecmath2.Colorf

       
        terrainShape.setGeometry(geom);
       
        Appearance app = new Appearance();
        app.setMaterial(new Material());
        app.getMaterial().setDiffuseColor(new Colorf(0.6313726f, 0.28627452f, 0.07058824f));
       
        terrainShape.setAppearance(app);
       
    }
View Full Code Here

Examples of org.openmali.vecmath2.Colorf

       
        this.app = app;
        InputSystem.getInstance().getMouse().addMouseListener(this);
        app.getOperationScheduler().scheduleOperation(this);
       
        Panel panel = new Panel(300f, 180f, new Colorf(1f, 1f, 1f, .2f));
        frame = new Frame(panel, "Digibot Information");
        frame.setDefaultCloseOperation(null);
        frame.setCloseButtonVisible(false);
       
        genomeLabel = new Label(panel.getWidth(), panel.getHeight());
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.