Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package core;
- import entity.MovingEntity;
- public class Position {
- private double x;
- private double y;
- public Position(int x, int y) {
- this.x = x;
- this.y = y;
- }
- public Position(double x, double y) {
- this.x = x;
- this.y = y;
- }
- public int intX() {
- return (int) Math.round(x);
- }
- public int intY() {
- return (int) Math.round(y);
- }
- public double getX() {
- return x;
- }
- public double getY() {
- return y;
- }
- public void setX(double x) {
- this.x = x;
- }
- public void setY(double y) {
- this.y = y;
- }
- public void apply(Motion motion) {
- Vector2D movementVector = motion.getVector();
- x += movementVector.getX();
- y += movementVector.getY();
- }
- public static double getDistance(Position startingPosition, Position endingPosition) {
- return Math.sqrt(Math.pow(endingPosition.getX() - startingPosition.getX(), 2) + Math.pow(endingPosition.getY() - startingPosition.getY(), 2));
- }
- public boolean isInRangeOf(Position position) {
- return Math.abs(x - position.getX()) < MovingEntity.PROXIMITY_RANGE && Math.abs(y - position.getY()) < MovingEntity.PROXIMITY_RANGE;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement