5 #include <SFML/Graphics/Rect.hpp> 6 #include <SFML/System/Vector2.hpp> 8 #include <NasNas/core/data/Maths.hpp> 12 virtual ~
Region() =
default;
13 virtual inline auto getBounds()
const -> sf::FloatRect = 0;
14 virtual inline auto contains(
const sf::Vector2f& pos)
const ->
bool = 0;
23 inline auto getBounds()
const -> sf::FloatRect
override {
24 return {-width/2.f, -height/2.f, width, height};
26 inline auto contains(
const sf::Vector2f& pos)
const ->
bool override {
27 return getBounds().contains(pos);
36 inline auto getBounds()
const -> sf::FloatRect
override {
37 return {-radius, -radius, 2.f*radius, 2.f*radius};
39 inline auto contains(
const sf::Vector2f& pos)
const ->
bool override {
40 return norm(pos) < radius;
auto norm(const sf::Vector2< T > &vector) -> float
Calculates the norm of a vector (its length)