[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Geometry.java, 1.19, 1.20 Space.java
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-06-07 08:22:41
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3768/src/net/sourceforge/bprocessor/model Modified Files: Geometry.java Space.java Log Message: Fixed a few bugs: - Length field apply crashed in ExtrudeTool - Deleted surfaces were added to the Void space Index: Space.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Space.java,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** Space.java 17 May 2006 17:05:45 -0000 1.36 --- Space.java 7 Jun 2006 08:22:37 -0000 1.37 *************** *** 559,568 **** if (back != null) { back.removeSurface(surface); ! surface.setBackDomain(empty); } Space front = surface.getFrontDomain(); if (front != null) { front.removeSurface(surface); ! surface.setFrontDomain(empty); } surfaces.remove(surface.getId()); --- 559,568 ---- if (back != null) { back.removeSurface(surface); ! surface.setBackDomain(null); } Space front = surface.getFrontDomain(); if (front != null) { front.removeSurface(surface); ! surface.setFrontDomain(null); } surfaces.remove(surface.getId()); Index: Geometry.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Geometry.java,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Geometry.java 5 Apr 2006 09:35:58 -0000 1.19 --- Geometry.java 7 Jun 2006 08:22:37 -0000 1.20 *************** *** 681,687 **** } if (exterior != null) { - Project.info(exterior + " contains " + surface); exterior.addHole(surface); - } { --- 681,685 ---- |