Package syn3d.ui.java3d

Examples of syn3d.ui.java3d.Frame3DJava3D


    /* (non-Javadoc)
     * @see syn3d.nodes.SceneNode#setVisible(boolean)
     */
    public void setVisible(boolean status) {
        if (frame==null) {
            frame = new Frame3DJava3D(this, "Java3D frame",-1,-1,400,400, pluginManager);
            addListener(this);
        }
        else frame.getPeerWindow().setVisible(status);
    }
View Full Code Here


      super.restoreScene(pm);
      pluginManager = pm;
     
      // Restore properties related the the frame 3D
      if (isVisible){
        frame = new Frame3DJava3D(this, "Java3D frame",x,y,width,height, pluginManager);
        frame.setRot(rot);
        frame.setTrans( trans);
        frame.setZoom(zoom);
       
        frame.setPos2DX(pos2DX);
View Full Code Here

TOP

Related Classes of syn3d.ui.java3d.Frame3DJava3D

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.