Examples of USimpleGUI


Examples of unlekker.util.USimpleGUI

public class GUITest extends PApplet {
  USimpleGUI gui;
 
  public void setup() {
    size(600,300);
    gui=new USimpleGUI(this);
//    gui.layoutVertical=false;
   
    gui.addButton("switchLayout");
    gui.addButton("test02");
    gui.addButton("test03");
View Full Code Here

Examples of unlekker.util.USimpleGUI

    size(1000,700, OPENGL);
   
    reinit();
    trans=new UGeometryTransformer();
   
    gui=new USimpleGUI(this);
    gui.layoutVertical=false;
    gui.addSlider("gridsize",gridsize,5,50);
    gui.addSlider("wmod",wmod,0.5f,3);
    gui.newRow();
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.