Package jsynoptic.plugins.java3d.panels

Examples of jsynoptic.plugins.java3d.panels.AxisDialog


    static class AxisAction extends AbstractNodeAction {
       
        @Override
        public void actionPerformed(ActionEvent e) {
           
            AxisDialog d=new AxisDialog(
                    javax.swing.SwingUtilities.getWindowAncestor( getNode().getTree()),
                    getLocation(),"Axis"); // TODO i18n
            AxisDialog.Result n=d.getResult();
            if(n!=null){
                GroupNode gn=(GroupNode)getNode();
       
                TransformGroup g=new TransformGroup();
                // TODO i18n
View Full Code Here

TOP

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

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.