Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public float verificar (int x1, int x2,int  y1, int y2){
  2.     float resul;
  3.        
  4.        
  5.        
  6.         resul=(float) Math.sqrt(Math.pow(y2-y1, 2)+ Math.pow(x2-x1, 2));
  7.    
  8.             return resul;  
  9.            
  10.     }