Subversion Repositories gelsvn

Rev

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

Rev 22 Rev 41
Line 25... Line 25...
25
  
25
  
26
      /// Construct the nan matrix
26
      /// Construct the nan matrix
27
      Mat4x4d() {}
27
      Mat4x4d() {}
28
 
28
 
29
      /// Construct a matrix with identical elements.
29
      /// Construct a matrix with identical elements.
30
      Mat4x4d(double a): 
30
      explicit Mat4x4d(double a): 
31
	ArithSqMat4x4Float<Vec4d, Mat4x4d> (a) {}
31
	ArithSqMat4x4Float<Vec4d, Mat4x4d> (a) {}
32
    };
32
    };
33
 
33
 
34
  /// Create a rotation _matrix. Rotates about one of the major axes.
34
  /// Create a rotation _matrix. Rotates about one of the major axes.
35
  Mat4x4d rotation_Mat4x4d(CGLA::Axis axis, float angle);
35
  Mat4x4d rotation_Mat4x4d(CGLA::Axis axis, float angle);