PolyRectangle.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. Copyright (C) 2011 by Ivan Safrin
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. */
  19. #pragma once
  20. #include "PolyGlobals.h"
  21. namespace Polycode {
  22. /**
  23. * Basic rectangle.
  24. */
  25. class _PolyExport Rectangle : public PolyBase {
  26. public:
  27. /**
  28. * Default constructor.
  29. */
  30. Rectangle(){x=0;y=0;w=0;h=0;}
  31. /**
  32. * Constructor with values.
  33. */
  34. Rectangle(Number px, Number py, Number pw, Number ph){x=px;y=py;w=pw;h=ph;}
  35. /**
  36. * Set rectangle values.
  37. */
  38. void setRect(Number x, Number y, Number w, Number h);
  39. /**
  40. * Return a Rectangle formed by clipping this rectangle to the
  41. * bounds of the passed rectangle.
  42. */
  43. Rectangle Clipped(const Rectangle& rect) const;
  44. /**
  45. * Return the minimum X coordinate (the left edge).
  46. */
  47. Number minX() const { return x; }
  48. /**
  49. * Return the maximum X coordinate (the right edge).
  50. */
  51. Number maxX() const { return x + w; }
  52. /**
  53. * Return the minimum Y coordinate (the top edge in a Y-down coordinate
  54. * system).
  55. */
  56. Number minY() const { return y; }
  57. /**
  58. * Return the maximum Y coordinate (the bottom edge in a Y-down coordinate
  59. * system).
  60. */
  61. Number maxY() const { return y + h; }
  62. bool operator==(const Rectangle& rect) const;
  63. bool operator!=(const Rectangle& rect) const { return !(*this == rect); }
  64. /**
  65. * X position
  66. */
  67. Number x;
  68. /**
  69. * Y position
  70. */
  71. Number y;
  72. /**
  73. * Width
  74. */
  75. Number w;
  76. /**
  77. * Height
  78. */
  79. Number h;
  80. };
  81. }