Package wecui.render.points

Examples of wecui.render.points.PointCube


        }
    }

    @Override
    public void setCylinderCenter(int x, int y, int z) {
        center = new PointCube(x, y, z);
        center.setColor(LineColor.CYLINDERCENTER);
    }
View Full Code Here


        }
    }

    @Override
    public void setEllipsoidCenter(int x, int y, int z) {
        center = new PointCube(x, y, z);
        center.setColor(LineColor.ELLIPSOIDCENTER);
    }
View Full Code Here

    }

    @Override
    public void setCuboidPoint(int id, int x, int y, int z) {
        if (id == 0) {
            firstPoint = new PointCube(x, y, z);
            firstPoint.setColor(LineColor.CUBOIDPOINT1);
        } else if (id == 1) {
            secondPoint = new PointCube(x, y, z);
            secondPoint.setColor(LineColor.CUBOIDPOINT2);
        }
    }
View Full Code Here

TOP

Related Classes of wecui.render.points.PointCube

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.