CSC8503_Advanced_Game_Technologies / CSC8503 / CSC8503Common / BoundingAABB.h
BoundingAABB.h
Raw
#pragma once
#include "BoundingVolume.h"

namespace NCL {
	class BoundingAABB : BoundingVolume
	{
	public:
		BoundingAABB(const Vector3& halfDims);
		~BoundingAABB();

		Vector3 GetHalfDimensions() const {
			return halfSizes;
		}

	protected:
		Vector3 halfSizes;
	};
}