Package jsynoptic.plugins.java3d.panels

Examples of jsynoptic.plugins.java3d.panels.DiscDialog


    static class DiscAction extends AbstractNodeAction {
        @Override
        public void actionPerformed(ActionEvent e) {
           
            DiscDialog d=new DiscDialog(
                    javax.swing.SwingUtilities.getWindowAncestor( getNode().getTree()),
                    getLocation(),"Disc"); // TODO i18n
            DiscDialog.Result n=d.getResult();
            if(n!=null){
                GroupNode gn=(GroupNode)getNode();
       
                Shape3D sd= new Shape3D(Geometries.disc(n.radius, n.divisions,n.up,0.));
                Color3f aColor  = new Color3f(0.1f, 0.1f, 0.1f);
View Full Code Here

TOP

Related Classes of jsynoptic.plugins.java3d.panels.DiscDialog

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.