/*
* =====================================================================================
*
* Filename: jVector.cpp
*
* Description: Tests for the jVector template
*
* Version: 1.0
* Created: 04/06/2011 07:34:58
* Revision: none
* Compiler: gcc
*
* Author: John Ryland (jryland), jryland@xiaofrog.com
* Company: InvertedLogic
*
* =====================================================================================
*/
#include <jVector.h>
static void testVectorClass()
{
jVector3f light;
light.normalize();
light = light.normalized();
jMatrix3x3f mat;
mat.normalize();
}