Subversion Repositories gelsvn

Rev

Rev 595 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
595 jab 1
/* ----------------------------------------------------------------------- *
2
 * This file is part of GEL, http://www.imm.dtu.dk/GEL
3
 * Copyright (C) the authors and DTU Informatics
4
 * For license and list of authors, see ../../doc/intro.pdf
5
 * ----------------------------------------------------------------------- */
6
 
7
/** @file Quaternion.h
8
 * @brief Quaternion is an alias for Quatf - float based quaternions.
9
 */
10
 
2 bj 11
#ifndef __CGLA_QUATERNION_H__
12
#define __CGLA_QUATERNION_H__
13
 
306 jrf 14
#include "Quatf.h"
2 bj 15
 
16
namespace CGLA {
17
 
306 jrf 18
	typedef Quatf Quaternion;
2 bj 19
}
20
#endif