3#include "terminalpp/core.hpp"
34 constexpr extent(coordinate_type
w, coordinate_type
h)
noexcept
35 : width_(
w), height_(
h)
45 height_ +=
rhs.height_;
64 height_ -=
rhs.height_;
83 coordinate_type width_;
84 coordinate_type height_;
A structure representing an ANSI graphics effect (e.g. intensity, underlining)
Definition effect.hpp:27
constexpr effect() noexcept
Initialises the intensity to the default (normal) value.
Definition effect.hpp:31
A class that represents a direction with distance in space (a vector).
Definition extent.hpp:18
constexpr friend auto operator-(extent lhs, extent const &rhs) noexcept
Subtraction.
Definition extent.hpp:71
constexpr friend auto operator+(extent lhs, extent const &rhs) noexcept
Addition.
Definition extent.hpp:52
constexpr friend auto operator<=>(extent const &lhs, extent const &rhs) noexcept=default
Relational operators for extents.
constexpr extent & operator+=(extent const &rhs) noexcept
Addition.
Definition extent.hpp:42
constexpr extent(coordinate_type w, coordinate_type h) noexcept
Constructor.
Definition extent.hpp:34
constexpr extent() noexcept
Default Constructor.
Definition extent.hpp:24
constexpr extent & operator-=(extent const &rhs) noexcept
Subtraction.
Definition extent.hpp:61