Examples of Tutorial2


Examples of de.taliis.plugins.adt.jogl3D.Tutorial2

    // get data
    adt obj = (adt)of.obj;

    // 3D Init
    GLCanvas glScene = null;
    Tutorial2 glEvents = null;
   
    JPanel r = new JPanel(new BorderLayout());
    r.add(new JLabel ("To be written."));
   
    // handle events
    glScene = new GLCanvas();
    for(Plugin p : pp) {
      if(p.getClass().toString().endsWith("mpqFileRequest"))
        glEvents = new Tutorial2(obj, fm, p);
    }
   
    glScene.addGLEventListener(glEvents);
   
    r.addKeyListener(glEvents);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.