gfxQuad.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2. * This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef GFX_QUAD_H
  6. #define GFX_QUAD_H
  7. #include "gfxTypes.h"
  8. #include "gfxRect.h"
  9. #include "gfxLineSegment.h"
  10. #include <algorithm>
  11. struct gfxQuad {
  12. gfxQuad(const gfxPoint& aOne, const gfxPoint& aTwo, const gfxPoint& aThree, const gfxPoint& aFour)
  13. {
  14. mPoints[0] = aOne;
  15. mPoints[1] = aTwo;
  16. mPoints[2] = aThree;
  17. mPoints[3] = aFour;
  18. }
  19. bool Contains(const gfxPoint& aPoint)
  20. {
  21. return (gfxLineSegment(mPoints[0], mPoints[1]).PointsOnSameSide(aPoint, mPoints[2]) &&
  22. gfxLineSegment(mPoints[1], mPoints[2]).PointsOnSameSide(aPoint, mPoints[3]) &&
  23. gfxLineSegment(mPoints[2], mPoints[3]).PointsOnSameSide(aPoint, mPoints[0]) &&
  24. gfxLineSegment(mPoints[3], mPoints[0]).PointsOnSameSide(aPoint, mPoints[1]));
  25. }
  26. gfxRect GetBounds()
  27. {
  28. gfxFloat min_x, max_x;
  29. gfxFloat min_y, max_y;
  30. min_x = max_x = mPoints[0].x;
  31. min_y = max_y = mPoints[0].y;
  32. for (int i=1; i<4; i++) {
  33. min_x = std::min(mPoints[i].x, min_x);
  34. max_x = std::max(mPoints[i].x, max_x);
  35. min_y = std::min(mPoints[i].y, min_y);
  36. max_y = std::max(mPoints[i].y, max_y);
  37. }
  38. return gfxRect(min_x, min_y, max_x - min_x, max_y - min_y);
  39. }
  40. gfxPoint mPoints[4];
  41. };
  42. #endif /* GFX_QUAD_H */