CSC8503_Advanced_Game_Technologies / CSC8503 / CSC8503Common / BoundingAABB.cpp
BoundingAABB.cpp
Raw
#include "BoundingAABB.h"

using namespace NCL;

BoundingAABB::BoundingAABB(const Vector3& halfDims)
{
	type = BoundingType::AABB;

	this->halfSizes = halfDims;
}


BoundingAABB::~BoundingAABB()
{
}