Subversion Repositories gelsvn

Rev

Rev 12 | Rev 50 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12 Rev 43
Line 26... Line 26...
26
  
26
  
27
      /// Construct the NaN matrix
27
      /// Construct the NaN matrix
28
      Mat4x4f() {}
28
      Mat4x4f() {}
29
 
29
 
30
      /// Construct a matrix with identical elements.
30
      /// Construct a matrix with identical elements.
31
      Mat4x4f(float a): 
-
 
32
	ArithSqMat4x4Float<Vec4f, Mat4x4f> (a) {}
31
      explicit Mat4x4f(float a) : ArithSqMat4x4Float<Vec4f, Mat4x4f> (a) {}
33
    };
32
    };
34
 
33
 
35
  /// Create a rotation _matrix. Rotates about one of the major axes.
34
  /// Create a rotation _matrix. Rotates about one of the major axes.
36
  Mat4x4f rotation_Mat4x4f(CGLA::Axis axis, float angle);
35
  Mat4x4f rotation_Mat4x4f(CGLA::Axis axis, float angle);
37
 
36