[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Surface.java, 1.193, 1.194
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-10-16 11:47:15
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25336/src/net/sourceforge/bprocessor/model Modified Files: Surface.java Log Message: extrusion bug fixed Index: Surface.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Surface.java,v retrieving revision 1.193 retrieving revision 1.194 diff -C2 -d -r1.193 -r1.194 *** Surface.java 15 Oct 2007 12:41:24 -0000 1.193 --- Surface.java 16 Oct 2007 11:47:16 -0000 1.194 *************** *** 691,695 **** // spaces here. if (AUTOMATIC) { ! assignSpaceForExtrusion(delta, sides, top); } return top; --- 691,699 ---- // spaces here. if (AUTOMATIC) { ! Collection<Surface> faces = new LinkedList(); ! for (int i = 0; i < n; i++) { ! faces.add(facemap[i]); ! } ! assignSpaceForExtrusion(delta, faces, top); } return top; |