
#include <iostream>

#include "maths_defs.h"
#include "Vector3.h"


void Vector3::Normalize()
{
	real n = 1.0/(this->Norm());
	x *= n;
	y *= n;
	z *= n;
}

