Package wecui.render.region

Examples of wecui.render.region.CylinderRegion


        } else if (this.getString(0).equals("polygon2d")) {
            newRegion = new PolygonRegion(controller);
        } else if (this.getString(0).equals("ellipsoid")) {
            newRegion = new EllipsoidRegion(controller);
        } else if (this.getString(0).equals("cylinder")) {
            newRegion = new CylinderRegion(controller);
        } else {
            return "Invalid selection type. Must be cuboid|polygon2d|ellipsoid|cylinder.";
        }

        controller.setSelection(newRegion);
View Full Code Here

TOP

Related Classes of wecui.render.region.CylinderRegion

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.