///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/// ZPRS Class
///
///		- Class for the management of the position, rotation and scale of an object 
///		
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////



#include	"..\Datas\ZooPRS.h"



///////////////////////////////////////////////////////////////////////////
/// Constructor					 										///
///////////////////////////////////////////////////////////////////////////
ZPRS::ZPRS()
{
	pos.SetNull();
	angle.SetNull();
	scale = 1.0f;

	coeffM3D = 100.0f;

	modified = true;
}

ZPRS::~ZPRS()
{
}