Newer
Older
Import / research / 3d-octrees / jVector.cpp
@John John on 29 Dec 2020 672 bytes bulk import from macbookpro checkouts
/*
 * =====================================================================================
 *
 *       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();
}