Examples of Vector3m


Examples of wecui.util.Vector3m

    protected Vector3m[] calcBounds() {
        float off = 0.02f;
        float off1 = 1 + off;

        Vector3m[] out = new Vector3m[2];
        out[0] = new Vector3m(Double.MAX_VALUE, Double.MAX_VALUE, Double.MAX_VALUE);
        out[1] = new Vector3m(-Double.MAX_VALUE, -Double.MAX_VALUE, -Double.MAX_VALUE);

        for (PointCube point : new PointCube[]{firstPoint, secondPoint}) {
            if (point.getPoint().getX() + off1 > out[1].getX()) {
                out[1].setX(point.getPoint().getX() + off1);
            }
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.