Subversion Repositories gelsvn

Rev

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

Rev 67 Rev 94
Line 10... Line 10...
10
{
10
{
11
 
11
 
12
  CGLA_DERIVEEXCEPTION(Mat3x3fException)
12
  CGLA_DERIVEEXCEPTION(Mat3x3fException)
13
    CGLA_DERIVEEXCEPTION(Mat3x3fSingular)
13
    CGLA_DERIVEEXCEPTION(Mat3x3fSingular)
14
 
14
 
15
    /** 3 by 3 float matrix.
15
    /** \brief 3 by 3 float matrix template.
-
 
16
				
16
	This class will typically be used for rotation or
17
		This class template will typically be used for rotation or
17
	scaling matrices for 3D vectors. */
18
		scaling matrices for 3D vectors. */
18
    template<class V, class M>
19
    template<class V, class M>
19
    class ArithSqMat3x3Float: public ArithSqMatFloat<V, M, 3>
20
    class ArithSqMat3x3Float: public ArithSqMatFloat<V, M, 3>
20
    {
21
    {
21
    public:
22
    public:
22
 
23