Package com.deadtroll.model

Examples of com.deadtroll.model.PoligonoAberto


        }
      }
    } else if (this.controller.modoAdicaoPoligonoAberto() || this.controller.modoAdicaoPoligonoFechado()) {
      if (this.objetoAdicao == null) {
        if (this.controller.modoAdicaoPoligonoAberto()) {
          this.objetoAdicao = new PoligonoAberto();
        } else {
          this.objetoAdicao = new PoligonoFechado();
        }
        ((Poligono)this.objetoAdicao).adicionarPonto(pontoMouse);
        this.controller.addObject(this.objetoAdicao);
View Full Code Here

TOP

Related Classes of com.deadtroll.model.PoligonoAberto

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.