Package fm.ak.otse.twod

Examples of fm.ak.otse.twod.ComponentRenderer


     * puts the new TextInstance into the {@link Component#queue} for deferred adding
     */
    public static Text create(Font f, String t, float px, float py, int ps, int w, int an, Fades ef, float pr, float pg, float pb, float pa) {
        Text text = new Text(f, t, px, py, ps, w, an, ef, pr, pg, pb, pa);
       
        ComponentRenderer cr = Otse.getInstance().getComponentRenderer();

        //synchronized (queue) {
            cr.queue.add(text);
        //}

View Full Code Here

TOP

Related Classes of fm.ak.otse.twod.ComponentRenderer

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.