Update of /cvsroot/csdopenglnet/csdOpenGL/math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15420/math
Modified Files:
F3Matrix.cs F4Matrix.cs
Added Files:
MathTest.cs
Log Message:
Index: F4Matrix.cs
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/F4Matrix.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** F4Matrix.cs 12 Jul 2004 17:17:23 -0000 1.1.1.1
--- F4Matrix.cs 5 Nov 2004 17:35:58 -0000 1.2
***************
*** 11,15 ****
using System;
- using System.Diagnostics;
using System.Globalization;
--- 11,14 ----
***************
*** 125,129 ****
// F4Matrix(s) have constand dimension =>
// no check is needed
- Debug.WriteLine( "F4Matrix.Mult()" );
for( short i=3; i>=0; i--){
for( short j=3; j>=0; j--){
--- 124,127 ----
--- NEW FILE: MathTest.cs ---
using System;
using csDragons.OpenGL.Math;
public class MathTest{
public static void Main( string[] args ) {
F3Matrix f3m = new F3Matrix();
Console.WriteLine( f3m.ToString() ) ;
}
}
Index: F3Matrix.cs
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/math/F3Matrix.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** F3Matrix.cs 12 Jul 2004 17:17:23 -0000 1.1.1.1
--- F3Matrix.cs 5 Nov 2004 17:35:58 -0000 1.2
***************
*** 11,15 ****
using System;
- using System.Diagnostics;
using System.Globalization;
--- 11,14 ----
***************
*** 126,130 ****
// F3Matrix(s) have constand dimension =>
// no check is needed
- Debug.WriteLine( "F3Matrix.Mult()" );
for( short i=2; i>=0; i--){
for( short j=2; j>=0; j--){
--- 125,128 ----
|