#include "bounds.hpp" Bounds::Bounds(const BoundsOptions &options) : _width(options.width), _height(options.height) { } uint32_t Bounds::width() const noexcept { return _width; } void Bounds::width(uint32_t width) noexcept { _width = width; } uint32_t Bounds::height() const noexcept { return _height; } void Bounds::height(uint32_t height) noexcept { _height = height; } CoordsValidation Bounds::validate_coords(const Vector2 &coords) const noexcept { if (coords.x() >= _width) { return CoordsValidation::X_HIGH; } if (coords.y() >= _height) { return CoordsValidation::Y_HIGH; } return CoordsValidation::VALID; } const Bounds &Bounds::operator*=(const Bounds &bounds) noexcept { _width *= bounds.width(); _height *= bounds.height(); return *this; } const Bounds &Bounds::operator+=(const Bounds &bounds) noexcept { _width += bounds.width(); _height += bounds.height(); return *this; } const Bounds &Bounds::operator-=(const Bounds &bounds) noexcept { _width -= bounds.width(); _height -= bounds.height(); return *this; }