|
| template<typename T > |
| constexpr TExtent2< T > | Math::operator+ (const TExtent2< T > &lhs, const TExtent2< T > &rhs) noexcept |
| | Returns the sum of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent2< T > | Math::operator- (const TExtent2< T > &lhs, const TExtent2< T > &rhs) noexcept |
| | Returns the subtraction of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent2< T > | Math::operator* (const TExtent2< T > &lhs, T &rhs) noexcept |
| | Returns the multiplication of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent2< T > | Math::operator/ (const TExtent2< T > &lhs, T &rhs) noexcept |
| | Returns the division of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent2< T > & | Math::operator*= (TExtent2< T > &lhs, T rhs) noexcept |
| | Returns the multiplication of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent2< T > & | Math::operator/= (TExtent2< T > &lhs, T rhs) noexcept |
| | Returns the division of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent3< T > | Math::operator+ (const TExtent3< T > &lhs, const TExtent3< T > &rhs) noexcept |
| | Returns the sum of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr TExtent3< T > | Math::operator- (const TExtent3< T > &lhs, const TExtent3< T > &rhs) noexcept |
| | Returns the subtraction of left hand side extent 'lhs' and the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr bool | Math::operator== (const TExtent2< T > &lhs, const TExtent2< T > &rhs) noexcept |
| | Returns true if the left hand side extent 'lhs' is equal to the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr bool | Math::operator!= (const TExtent2< T > &lhs, const TExtent2< T > &rhs) noexcept |
| | Returns true if the left hand side extent 'lhs' is unequal to the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr bool | Math::operator== (const TExtent3< T > &lhs, const TExtent3< T > &rhs) noexcept |
| | Returns true if the left hand side extent 'lhs' is equal to the right hand side extent 'rhs'.
|
| |
| template<typename T > |
| constexpr bool | Math::operator!= (const TExtent3< T > &lhs, const TExtent3< T > &rhs) noexcept |
| | Returns true if the left hand side extent 'lhs' is unequal to the right hand side extent 'rhs'.
|
| |