Package com.ardor3d.extension.terrain.util.AbstractBresenhamTracer

Examples of com.ardor3d.extension.terrain.util.AbstractBresenhamTracer.Direction


            // because of how we get our height coords, we will
            // sometimes be off be a grid spot, so we check the next
            // grid space up.
            int dx = 0, dy = 0;
            final Direction d = tracer.getLastStepDirection();
            switch (d) {
                case PositiveX:
                case NegativeX:
                    dx = 0;
                    dy = 1;
View Full Code Here

TOP

Related Classes of com.ardor3d.extension.terrain.util.AbstractBresenhamTracer.Direction

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.