Examples of Point2I


Examples of transientlibs.rlforj.math.Point2I

    /**
     * Debug output of what tiles are visible
     */
    public void print(int ox, int oy) {
        Point2I p = new Point2I(0, 0);
        for (int j = 0; j < h; j++) {
            for (int i = 0; i < w; i++) {
                p.x = i;
                p.y = j;
                Character c = marks.get(p);
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.