29 glm::ivec2 leftTop()
const noexcept {
34 glm::ivec2 rightTop()
const noexcept {
35 return { right, top };
39 glm::ivec2 leftBottom()
const noexcept {
40 return { left, bottom };
44 glm::ivec2 rightBottom()
const noexcept {
45 return { right, bottom };
49 int horizontal()
const noexcept
55 int vertical()
const noexcept
61 glm::ivec2 occupiedSize()
const noexcept {
62 return { horizontal(), vertical() };
Represents a rectangle fields. Useful for margin and padding around AViews.
Definition: ABoxFields.h:21