9 #include <initializer_list> 12 #include <NasNas/core/data/Rect.hpp> 17 auto getFilename(
const std::string& path) -> std::string;
18 auto getStem(
const std::string& path) -> std::string;
19 auto getExtension(
const std::string& path) -> std::string;
20 auto getPath(
const std::string& path) -> std::string;
21 void removeFilename(std::string& path);
25 bool_switch(std::function<
void()> on_true, std::function<
void()> on_false);
28 virtual explicit operator bool()
const;
31 std::function<void()> m_on_true;
32 std::function<void()> m_on_false;
35 auto getRandomFloat(
float min,
float max) -> float;
36 auto getRandomInt(
int min,
int max) -> int;
45 template <
typename It>
49 float left = begin->left;
50 float top = begin->top;
51 float right = begin->left + begin->width;
52 float bottom = begin->top + begin->height;
53 for (
auto it = ++begin; it != end; ++it) {
55 left = std::min(left, rect.left);
56 top = std::min(top, rect.top);
57 right = std::max(right, rect.left + rect.width);
58 bottom = std::max(bottom, rect.top + rect.height);
61 return {left, top, right-left, bottom-top};
auto computeBounds(std::initializer_list< sf::FloatRect > rects) -> ns::FloatRect
Compute the union between multiple FloatRect.