[Bprocessor-commit] /test/src/net/sourceforge/bprocessor/test NormalsBenchmark.java, 1.1, 1.2 Surfa
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2007-09-27 10:47:46
|
Update of /cvsroot/bprocessor//test/src/net/sourceforge/bprocessor/test In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13898/src/net/sourceforge/bprocessor/test Modified Files: NormalsBenchmark.java SurfaceNormal.java Log Message: Changed to reflect the changed input on normal0 Index: SurfaceNormal.java =================================================================== RCS file: /cvsroot/bprocessor//test/src/net/sourceforge/bprocessor/test/SurfaceNormal.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SurfaceNormal.java 6 Jul 2007 09:50:39 -0000 1.3 --- SurfaceNormal.java 27 Sep 2007 10:47:47 -0000 1.4 *************** *** 50,54 **** while (iter.hasNext()) { Surface current = (Surface) iter.next(); ! Vertex normal = current.normal0(); System.out.println(current.getName() + " normal: " + normal); } --- 50,54 ---- while (iter.hasNext()) { Surface current = (Surface) iter.next(); ! Vertex normal = current.normal(); System.out.println(current.getName() + " normal: " + normal); } Index: NormalsBenchmark.java =================================================================== RCS file: /cvsroot/bprocessor//test/src/net/sourceforge/bprocessor/test/NormalsBenchmark.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** NormalsBenchmark.java 25 Jan 2007 10:21:04 -0000 1.1 --- NormalsBenchmark.java 27 Sep 2007 10:47:47 -0000 1.2 *************** *** 98,102 **** while (count < array.length) { Surface current = array[count]; ! Vertex normal = current.normal0(); count++; } --- 98,102 ---- while (count < array.length) { Surface current = array[count]; ! Vertex normal = current.normal(); count++; } |