Package toxi.color

Examples of toxi.color.ColorTheme$ThemePart


            assertNotNull(strategy);
        }
    }

    public void testThemes() {
        ColorTheme t = new ColorTheme("test");
        t.addRange("dark blue", 0.5f);
        t.addRange("soft orange", 0.5f);
        ColorList cols = t.getColors(1000);
        for (ReadonlyTColor c : cols) {
            assertNotNull(c);
        }
    }
View Full Code Here

TOP

Related Classes of toxi.color.ColorTheme$ThemePart

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.