Subversion Repositories gelsvn

Rev

Rev 67 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 67 Rev 94
Line 7... Line 7...
7
#include "Mat4x4f.h"
7
#include "Mat4x4f.h"
8
#include <cmath>
8
#include <cmath>
9
 
9
 
10
namespace CGLA {
10
namespace CGLA {
11
 
11
 
12
  /** A Quaterinion class. Quaternions are algebraic entities 
12
  /** \brief A float based Quaterinion class. 
-
 
13
 
13
      useful for rotation. */
14
	Quaternions are algebraic entities useful for rotation. */
14
 
15
 
15
  class Quatf
16
  class Quatf
16
  {
17
  {
17
  public:
18
  public:
18
 
19