Package com.deadtroll.model

Examples of com.deadtroll.model.Cor


  public void stateChanged(ChangeEvent e) {
    if (this.controller.modoSelecaoPoligonos()) {
      Renderable objeto = this.controller.getObjetoSelecionado();
      if (objeto != null && colorChooser != null) {
        Color color = colorChooser.getColor();
        objeto.setCor(new Cor((byte)color.getRed(), (byte)color.getGreen(), (byte)color.getBlue()));
        glDrawable.display();
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.deadtroll.model.Cor

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.