Package wecui.util

Examples of wecui.util.Vector3


        center.setColor(LineColor.ELLIPSOIDCENTER);
    }

    @Override
    public void setEllipsoidRadii(double x, double y, double z) {
        radii = new Vector3(x, y, z);
    }
View Full Code Here


    public PointCube(Vector3 point) {
        this.point = point;
    }

    public PointCube(int x, int y, int z) {
        this.point = new Vector3(x, y, z);
    }
View Full Code Here

    public PointCube(int x, int y, int z) {
        this.point = new Vector3(x, y, z);
    }

    public PointCube(double x, double y, double z) {
        this.point = new Vector3(x, y, z);
    }
View Full Code Here

        this.point = new Vector3(x, y, z);
    }

    public void render() {
        double off = 0.03f;
        Vector3 minVec = new Vector3(off, off, off);
        Vector3 maxVec = new Vector3(off + 1, off + 1, off + 1);

        new Render3DBox(color, point.subtract(minVec), point.add(maxVec)).render();
    }
View Full Code Here

TOP

Related Classes of wecui.util.Vector3

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.