Subversion Repositories gelsvn

Rev

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

Rev 107 Rev 194
Line 15... Line 15...
15
using namespace std;
15
using namespace std;
16
using namespace CGLA;
16
using namespace CGLA;
17
 
17
 
18
 
18
 
19
/* This is a non-exhaustive test program for CGLA */
19
/* This is a non-exhaustive test program for CGLA */
20
main()
20
int main()
21
{
21
{
22
 
22
 
23
	Mat2x3f m23(Vec3f(1,1,1),Vec3f(2,2,2));
23
	Mat2x3f m23(Vec3f(1,1,1),Vec3f(2,2,2));
24
	Mat3x2f m32;
24
	Mat3x2f m32;
25
	
25
	
Line 114... Line 114...
114
	copy_matrix(m33, m44);
114
	copy_matrix(m33, m44);
115
 
115
 
116
	cout << "The matrix " << m33 << " is copied to " << m44 << endl;
116
	cout << "The matrix " << m33 << " is copied to " << m44 << endl;
117
 
117
 
118
 
118
 
119
	
119
	return 0;
120
}
120
}