projects
/
occt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbadd2c
)
Correction of OCCT for ACIS22398
author
SSV
<>
Fri, 22 Jul 2011 08:37:55 +0000
(08:37 +0000)
committer
bugmaster
<bugmaster@opencascade.com>
Mon, 5 Mar 2012 15:29:30 +0000
(19:29 +0400)
src/ShapeFix/ShapeFix_Wire.cxx
patch
|
blob
|
blame
|
history
diff --git
a/src/ShapeFix/ShapeFix_Wire.cxx
b/src/ShapeFix/ShapeFix_Wire.cxx
index
e607c71
..
a3eae03
100755
(executable)
--- a/
src/ShapeFix/ShapeFix_Wire.cxx
+++ b/
src/ShapeFix/ShapeFix_Wire.cxx
@@
-2986,9
+2986,7
@@
Standard_Boolean ShapeFix_Wire::FixNotchedEdges()
if ( ! Context().IsNull() ) UpdateWire();
Handle(ShapeExtend_WireData) sewd = WireData();
- for (Standard_Integer i = 1; i <= NbEdges() && NbEdges() >= 2; i++) {
- // NbEdges >= 2 -- equality also acceptable (ssv; 16.06.2011; ACIS22569)
-
+ for (Standard_Integer i = 1; i <= NbEdges() && NbEdges() > 2; i++) {
Standard_Real param;
Standard_Integer toRemove;
if(theAdvAnalyzer->CheckNotchedEdges(i,toRemove,param,MinTolerance())){