|
|
|
|
@ -59,7 +59,7 @@ template<class T> class Frustum {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** @brief Constructor */ |
|
|
|
|
constexpr /*implicit*/ Frustum(const Vector4<T>& left, const Vector4<T>& right, const Vector4<T>& bottom, const Vector4<T>& top, const Vector4<T>& near, const Vector4<T>& far): _data{left, right, bottom, top, near, far} {} |
|
|
|
|
constexpr /*implicit*/ Frustum(const Vector4<T>& left, const Vector4<T>& right, const Vector4<T>& bottom, const Vector4<T>& top, const Vector4<T>& near, const Vector4<T>& far) noexcept: _data{left, right, bottom, top, near, far} {} |
|
|
|
|
|
|
|
|
|
/** @brief Equality comparison */ |
|
|
|
|
bool operator==(const Frustum<T>& other) const { |
|
|
|
|
|