61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
// Copyright (C) 2012 Jérôme Leclercq
|
|
// This file is part of the "Nazara Engine".
|
|
// For conditions of distribution and use, see copyright notice in Config.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NAZARA_CUBE_HPP
|
|
#define NAZARA_CUBE_HPP
|
|
|
|
#include <Nazara/Core/String.hpp>
|
|
#include <Nazara/Math/Rect.hpp>
|
|
#include <Nazara/Math/Vector3.hpp>
|
|
|
|
template<typename T>
|
|
class NzCube
|
|
{
|
|
public:
|
|
NzCube();
|
|
NzCube(T X, T Y, T Z, T Width, T Height, T Depth);
|
|
NzCube(T cube[6]);
|
|
NzCube(const NzRect<T>& rect);
|
|
template<typename U> explicit NzCube(const NzCube<U>& rect);
|
|
NzCube(const NzCube& rect) = default;
|
|
~NzCube() = default;
|
|
|
|
bool Contains(T X, T Y, T Z) const;
|
|
bool Contains(const NzVector3<T>& point) const;
|
|
bool Contains(const NzCube& rect) const;
|
|
|
|
void ExtendTo(const NzVector3<T>& point);
|
|
void ExtendTo(const NzCube& rect);
|
|
|
|
NzVector3<T> GetCenter() const;
|
|
|
|
bool Intersect(const NzCube& rect) const;
|
|
bool Intersect(const NzCube& rect, NzCube& intersection) const;
|
|
|
|
bool IsValid() const;
|
|
|
|
NzString ToString() const;
|
|
|
|
operator NzString() const;
|
|
|
|
T& operator[](unsigned int i);
|
|
T operator[](unsigned int i) const;
|
|
|
|
T x, y, z, width, height, depth;
|
|
};
|
|
|
|
template<typename T>
|
|
std::ostream& operator<<(std::ostream& out, const NzCube<T>& vec);
|
|
|
|
typedef NzCube<double> NzCubed;
|
|
typedef NzCube<float> NzCubef;
|
|
typedef NzCube<int> NzCubei;
|
|
typedef NzCube<unsigned int> NzCubeui;
|
|
|
|
#include <Nazara/Math/Cube.inl>
|
|
|
|
#endif // NAZARA_CUBE_HPP
|