| 22 | } |
| 23 | |
| 24 | bool Rectangle::fullyContains(const Rectangle& other) const noexcept { |
| 25 | return ( |
| 26 | other.minimumX >= this->minimumX && other.maximumX <= this->maximumX && |
| 27 | other.minimumY >= this->minimumY && other.maximumY <= this->maximumY); |
| 28 | } |
| 29 | |
| 30 | double |
| 31 | Rectangle::computeSignedDistance(const glm::dvec2& position) const noexcept { |
no outgoing calls
no test coverage detected