Package se.llbit.chunky.renderer.ui

Examples of se.llbit.chunky.renderer.ui.Chunk3DView


  public CLRenderManager(JFrame parent) {

    super("Render Manager");

    view = new Chunk3DView(this, parent);
    bufferWidth = 400;
    bufferHeight = 400;
    globalWorkSize = new long[] { bufferWidth, bufferHeight };
    localWorkSize = new long[] { 16, 16 };
    workItems = (int) (globalWorkSize[0] * globalWorkSize[1]);
 
View Full Code Here


    camera = new Camera(this);
    nextCamera = new Camera(this);
    nextCamera.setView(-3*Math.PI/4, -5*Math.PI/6, 0);

    if (targetFile.isEmpty()) {
      view = new Chunk3DView(this, parent);
      view.setRenderer(this);
      view.setVisible(true);
    }
  }
View Full Code Here

TOP

Related Classes of se.llbit.chunky.renderer.ui.Chunk3DView

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.