Subversion Repositories gelsvn

Rev

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

Rev 358 Rev 501
Line 35... Line 35...
35
 
35
 
36
 
36
 
37
	/// Create an identity matrix.
37
	/// Create an identity matrix.
38
	inline Mat3x3d identity_Mat3x3d()
38
	inline Mat3x3d identity_Mat3x3d()
39
	{
39
	{
40
		return Mat3x3d(Vec3d(1,0,0), Vec3d(0,1,0), Vec3d(0,0,1));
40
		return Mat3x3d(Vec3d(1.0,0.0,0.0), Vec3d(0.0,1.0,0.0), Vec3d(0.0,0.0,1.0));
41
	}
41
	}
42
 
42
 
43
}
43
}
44
#endif
44
#endif
45
 
45