ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DIRectangle.java 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package org.openzen.drawablegui;
  7. /**
  8. *
  9. * @author Hoofdgebruiker
  10. */
  11. public class DIRectangle {
  12. public static final DIRectangle EMPTY = new DIRectangle(0, 0, 0, 0);
  13. public final int x;
  14. public final int y;
  15. public final int width;
  16. public final int height;
  17. public DIRectangle(int x, int y, int width, int height) {
  18. if (width < 0)
  19. throw new IllegalArgumentException("Width must be >= 0");
  20. if (height < 0)
  21. throw new IllegalArgumentException("Height must be >= 0");
  22. this.x = x;
  23. this.y = y;
  24. this.width = width;
  25. this.height = height;
  26. }
  27. public int getCenterX() {
  28. return (x + width) / 2;
  29. }
  30. public int getCenterY() {
  31. return (y + height) / 2;
  32. }
  33. public boolean contains(int x, int y) {
  34. return x >= this.x && x < (this.x + this.width)
  35. && y >= this.y && y < (this.y + this.height);
  36. }
  37. @Override
  38. public String toString() {
  39. return "(x = " + x + ", y = " + y + ", width = " + width + ", height = " + height + ")";
  40. }
  41. }