[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/tool CatmullClark.java,1.7,1.8
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-02-02 12:15:18
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12198/src/net/sourceforge/bprocessor/gl/tool Modified Files: CatmullClark.java Log Message: Surface.getVertices() no longer returns the first vertex twice Index: CatmullClark.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/tool/CatmullClark.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** CatmullClark.java 1 Feb 2006 09:00:11 -0000 1.7 --- CatmullClark.java 2 Feb 2006 12:15:05 -0000 1.8 *************** *** 359,363 **** edges.addAll(current.getEdges()); Iterator vit = current.getVertices().iterator(); - vit.next(); while (vit.hasNext()) { Vertex v = (Vertex) vit.next(); --- 359,362 ---- |