Subversion Repositories gelsvn

Rev

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

Rev 67 Rev 94
Line 8... Line 8...
8
namespace CGLA 
8
namespace CGLA 
9
{
9
{
10
 
10
 
11
  CGLA_DERIVEEXCEPTION(Mat2x2fException);
11
  CGLA_DERIVEEXCEPTION(Mat2x2fException);
12
 
12
 
13
  /** Two by two float matrix. This class is useful for various 
13
  /** \brief Two by two float matrix template. 
14
      vector transformations in the plane. */
-
 
15
	
14
 
-
 
15
	This class template is useful for various vector transformations 
-
 
16
	in the plane. */
16
  template<class V, class M>
17
  template<class V, class M>
17
  class ArithSqMat2x2Float: public ArithSqMatFloat<V,M, 2>
18
  class ArithSqMat2x2Float: public ArithSqMatFloat<V,M, 2>
18
  {
19
  {
19
  public:
20
  public:
20
 
21