Advertisement
Guest User

Untitled

a guest
Oct 4th, 2024
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.14 KB | Source Code | 0 0
  1. package core;
  2.  
  3. import entity.MovingEntity;
  4.  
  5. public class Position {
  6.    
  7.     private double x;
  8.     private double y;
  9.    
  10.     public Position(int x, int y) {
  11.         this.x = x;
  12.         this.y = y;
  13.     }
  14.    
  15.     public Position(double x, double y) {
  16.         this.x = x;
  17.         this.y = y;
  18.     }
  19.    
  20.     public int intX() {
  21.         return (int) Math.round(x);
  22.     }
  23.    
  24.     public int intY() {
  25.         return (int) Math.round(y);
  26.     }
  27.    
  28.     public double getX() {
  29.         return x;
  30.     }
  31.    
  32.     public double getY() {
  33.         return y;
  34.     }
  35.    
  36.     public void setX(double x) {
  37.         this.x = x;
  38.     }
  39.    
  40.     public void setY(double y) {
  41.         this.y = y;
  42.     }
  43.  
  44.     public void apply(Motion motion) {
  45.         Vector2D movementVector = motion.getVector();
  46.         x += movementVector.getX();
  47.         y += movementVector.getY();
  48.     }
  49.    
  50.     public static double getDistance(Position startingPosition, Position endingPosition) {
  51.         return Math.sqrt(Math.pow(endingPosition.getX() - startingPosition.getX(), 2) + Math.pow(endingPosition.getY() - startingPosition.getY(), 2));
  52.     }
  53.  
  54.     public boolean isInRangeOf(Position position) {
  55.         return Math.abs(x - position.getX()) < MovingEntity.PROXIMITY_RANGE && Math.abs(y - position.getY()) < MovingEntity.PROXIMITY_RANGE;
  56.     }
  57. }
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement