diff options
author | bunnei <bunneidev@gmail.com> | 2016-11-15 19:57:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 19:57:08 -0500 |
commit | 5a31552764dc8970253e642f4b829a8b785375c6 (patch) | |
tree | 8186a82c37ae04c17bd1d6250c524fc097f9671c /src/common/math_util.h | |
parent | 3b4f134c08eb61e5f69e35270adb34fdad1fae77 (diff) | |
parent | 793339b73a9bc87d6fa22742be4631565c2201db (diff) |
Merge pull request #1753 from jroweboy/frame_layouts
Support additional screen layouts.
Diffstat (limited to 'src/common/math_util.h')
-rw-r--r-- | src/common/math_util.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index 41d89666c..cdeaeb733 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h @@ -38,6 +38,16 @@ struct Rectangle { T GetHeight() const { return std::abs(static_cast<typename std::make_signed<T>::type>(bottom - top)); } + Rectangle<T> TranslateX(const T x) const { + return Rectangle{left + x, top, right + x, bottom}; + } + Rectangle<T> TranslateY(const T y) const { + return Rectangle{left, top + y, right, bottom + y}; + } + Rectangle<T> Scale(const float s) const { + return Rectangle{left, top, static_cast<T>(left + GetWidth() * s), + static_cast<T>(top + GetHeight() * s)}; + } }; } // namespace MathUtil |