Changes in / [38ac100:69f6f01] in galcon-client


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/com/example/helloandroid/Fleet.java

    r38ac100 r69f6f01  
    236236                       
    237237                        double dist = Math.abs(destination.getY() - (Math.tan(direction)*destination.getX()) - xIntercept)/(double)Math.sqrt(Math.pow(direction,2)+1);
    238                         int allowedError = 2;
    239                         if(nearPlanet.radius <= 10)
    240                                 allowedError = 10;
    241                         else if(nearPlanet.radius <= 30)
    242                                 allowedError = 5;
    243                         if(dist < allowedError){
     238                        if(dist < 2){
    244239                                dblY += (Math.sin(direction)*speed);
    245240                                dblX += (Math.cos(direction)*speed);
     
    251246                                        isNextToAPlanet = false;
    252247                                        nearPlanet = null;
    253                                        
    254                                         slope = getSlope(x,y,destination.getX(),destination.getY());
    255                                        
    256                                         xIntercept = destination.getY() - (slope*destination.getX());
    257 
    258                                         //direction
    259                                         direction = Math.atan(slope);
    260 
    261                                         //coordinates for all 4 coordinates
    262                                         if((destination.getX() - x) < 0 )
    263                                                 direction += Math.PI;
    264248                                }
    265249                        } else {
Note: See TracChangeset for help on using the changeset viewer.