Package model

Examples of model.Point


    public void mouseClicked(MouseEvent arg0) {
       
      int y = 20-(arg0.getY()/20);
      int x = arg0.getX()/20;
     
      Point myCurrentPoint = new Point(x, y);

      if(lineToReturn != 0){
        if(y == lineToReturn){
          mot+= myPlateau.getBriqueLetter(x, y);
          word.setText(mot);
View Full Code Here

TOP

Related Classes of model.Point

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.