1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

OCC22311 A regression was found: face obtained from 2D offset of a wire is invalid

This commit is contained in:
JGV 2011-04-28 15:32:04 +00:00 committed by bugmaster
parent 4fbddc7c38
commit 86b3805f0b
4 changed files with 113 additions and 81 deletions

View File

@ -149,7 +149,8 @@ is
class DataMapOfNodeDataMapOfShapeShape instantiates class DataMapOfNodeDataMapOfShapeShape instantiates
DataMap from TCollection (Node from MAT, DataMap from TCollection (Node from MAT,
DataMapOfShapeShape from TopTools, MapTransientHasher from TColStd ); DataMapOfShapeShape from TopTools,
MapTransientHasher from TColStd );
class DataMapOfNodeShape instantiates class DataMapOfNodeShape instantiates
DataMap from TCollection (Node from MAT, DataMap from TCollection (Node from MAT,
@ -176,6 +177,11 @@ is
ListOfShape from TopTools, ListOfShape from TopTools,
OrientedShapeMapHasher from TopTools); OrientedShapeMapHasher from TopTools);
class IndexedDataMapOfOrientedShapeListOfShape instantiates
IndexedDataMap from TCollection (Shape from TopoDS,
ListOfShape from TopTools,
OrientedShapeMapHasher from TopTools);
class CurveConstraint ; class CurveConstraint ;
---Purpose: same as CurveConstraint from GeomPlate ---Purpose: same as CurveConstraint from GeomPlate
-- with BRepAdaptor_Surface instead of -- with BRepAdaptor_Surface instead of

View File

@ -17,7 +17,7 @@ uses
JoinType from GeomAbs, JoinType from GeomAbs,
ListOfShape from TopTools, ListOfShape from TopTools,
DataMapOfShapeShape from TopTools, DataMapOfShapeShape from TopTools,
DataMapOfOrientedShapeListOfShape from BRepFill, IndexedDataMapOfOrientedShapeListOfShape from BRepFill,
BisectingLocus from BRepMAT2d, BisectingLocus from BRepMAT2d,
LinkTopoBilo from BRepMAT2d LinkTopoBilo from BRepMAT2d
@ -92,7 +92,7 @@ is
Generated (me : in out ) Generated (me : in out )
---C++: return & ---C++: return &
returns DataMapOfOrientedShapeListOfShape from BRepFill returns IndexedDataMapOfOrientedShapeListOfShape from BRepFill
is static private; is static private;
PrepareSpine (me : in out) PrepareSpine (me : in out)
@ -121,7 +121,7 @@ fields
myShape : Shape from TopoDS; myShape : Shape from TopoDS;
myIsDone : Boolean from Standard; myIsDone : Boolean from Standard;
myJoinType : JoinType from GeomAbs; myJoinType : JoinType from GeomAbs;
myMap : DataMapOfOrientedShapeListOfShape from BRepFill; myMap : IndexedDataMapOfOrientedShapeListOfShape from BRepFill;
myBilo : BisectingLocus from BRepMAT2d; myBilo : BisectingLocus from BRepMAT2d;
myLink : LinkTopoBilo from BRepMAT2d; myLink : LinkTopoBilo from BRepMAT2d;
myMapSpine : DataMapOfShapeShape from TopTools; myMapSpine : DataMapOfShapeShape from TopTools;

View File

@ -16,7 +16,6 @@
#include <BRepFill_DataMapOfShapeSequenceOfPnt.hxx> #include <BRepFill_DataMapOfShapeSequenceOfPnt.hxx>
#include <BRepFill_DataMapOfShapeSequenceOfReal.hxx> #include <BRepFill_DataMapOfShapeSequenceOfReal.hxx>
#include <BRepFill_DataMapOfOrientedShapeListOfShape.hxx> #include <BRepFill_DataMapOfOrientedShapeListOfShape.hxx>
#include <BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape.hxx>
#include <BRepFill_TrimEdgeTool.hxx> #include <BRepFill_TrimEdgeTool.hxx>
#include <BRepLib.hxx> #include <BRepLib.hxx>
#include <BRepLib_MakeVertex.hxx> #include <BRepLib_MakeVertex.hxx>
@ -202,14 +201,14 @@ static void MakeCircle
const TopoDS_Vertex& V, const TopoDS_Vertex& V,
const TopoDS_Face& F, const TopoDS_Face& F,
const Standard_Real Offset, const Standard_Real Offset,
BRepFill_DataMapOfOrientedShapeListOfShape& Map, BRepFill_IndexedDataMapOfOrientedShapeListOfShape& Map,
const Handle(Geom_Plane)& RefPlane); const Handle(Geom_Plane)& RefPlane);
static void MakeOffset static void MakeOffset
(const TopoDS_Edge& E, (const TopoDS_Edge& E,
const TopoDS_Face& F, const TopoDS_Face& F,
const Standard_Real Offset, const Standard_Real Offset,
BRepFill_DataMapOfOrientedShapeListOfShape& Map, BRepFill_IndexedDataMapOfOrientedShapeListOfShape& Map,
const Handle(Geom_Plane)& RefPlane); const Handle(Geom_Plane)& RefPlane);
//======================================================================= //=======================================================================
@ -222,7 +221,7 @@ static Standard_Boolean KPartCircle
const Standard_Real myOffset, const Standard_Real myOffset,
const Standard_Real Alt, const Standard_Real Alt,
TopoDS_Shape& myShape, TopoDS_Shape& myShape,
BRepFill_DataMapOfOrientedShapeListOfShape& myMap, BRepFill_IndexedDataMapOfOrientedShapeListOfShape& myMap,
Standard_Boolean& myIsDone) Standard_Boolean& myIsDone)
{ {
// Un seul contour qui est un cercle ferme // Un seul contour qui est un cercle ferme
@ -271,7 +270,7 @@ static Standard_Boolean KPartCircle
TopTools_ListOfShape LL; TopTools_ListOfShape LL;
LL.Append(myShape); LL.Append(myShape);
myMap.Bind(E,LL); myMap.Add(E,LL);
} }
myIsDone = Standard_True; myIsDone = Standard_True;
return Standard_True; return Standard_True;
@ -334,7 +333,7 @@ void BRepFill_OffsetWire::Init(const TopoDS_Face& Spine,
// Modified by Sergey KHROMOV - Tue Nov 26 17:39:03 2002 End // Modified by Sergey KHROMOV - Tue Nov 26 17:39:03 2002 End
TopoDS_Shape aShape; TopoDS_Shape aShape;
BRepFill_DataMapOfOrientedShapeListOfShape aMap; BRepFill_IndexedDataMapOfOrientedShapeListOfShape aMap;
Standard_Boolean Done; Standard_Boolean Done;
if (KPartCircle(myWorkSpine,1.,0.,aShape,aMap,Done)) return; if (KPartCircle(myWorkSpine,1.,0.,aShape,aMap,Done)) return;
@ -399,24 +398,36 @@ const TopTools_ListOfShape& BRepFill_OffsetWire::GeneratedShapes
// myMapSpine peut etre vide si on est passe par PerformWithBilo. // myMapSpine peut etre vide si on est passe par PerformWithBilo.
TopTools_DataMapIteratorOfDataMapOfShapeShape it(myMapSpine); TopTools_DataMapIteratorOfDataMapOfShapeShape it(myMapSpine);
for (; it.More(); it.Next()) { for (; it.More(); it.Next()) {
if (myMap.IsBound(it.Key())) { if (myMap.Contains(it.Key())) {
if (!myMap.IsBound(it.Value())) { if (!myMap.Contains(it.Value())) {
TopTools_ListOfShape L; TopTools_ListOfShape L;
myMap.Bind(it.Value(),L); myMap.Add(it.Value(),L);
} }
if ( !it.Value().IsSame(it.Key())) { if ( !it.Value().IsSame(it.Key())) {
myMap(it.Value()).Append(myMap(it.Key())); myMap.ChangeFromKey(it.Value()).Append(myMap.ChangeFromKey(it.Key()));
myMap.UnBind(it.Key()); //myMap.UnBind(it.Key());
TopoDS_Shape LastShape = myMap.FindKey(myMap.Extent());
TopTools_ListOfShape LastList;
LastList.Append(myMap(myMap.Extent()));
myMap.RemoveLast();
if (myMap.FindIndex(it.Key()) != 0)
myMap.Substitute(myMap.FindIndex(it.Key()), LastShape, LastList);
} }
} }
if (myMap.IsBound(it.Key().Reversed())) { if (myMap.Contains(it.Key().Reversed())) {
if (!myMap.IsBound(it.Value().Reversed())) { if (!myMap.Contains(it.Value().Reversed())) {
TopTools_ListOfShape L; TopTools_ListOfShape L;
myMap.Bind(it.Value().Reversed(),L); myMap.Add(it.Value().Reversed(),L);
} }
if ( !it.Value().IsSame(it.Key())) { if ( !it.Value().IsSame(it.Key())) {
myMap(it.Value().Reversed()).Append(myMap(it.Key().Reversed())); myMap.ChangeFromKey(it.Value().Reversed()).Append(myMap.ChangeFromKey(it.Key().Reversed()));
myMap.UnBind(it.Key().Reversed()); //myMap.UnBind(it.Key().Reversed());
TopoDS_Shape LastShape = myMap.FindKey(myMap.Extent());
TopTools_ListOfShape LastList;
LastList.Append(myMap(myMap.Extent()));
myMap.RemoveLast();
if (myMap.FindIndex(it.Key().Reversed()) != 0)
myMap.Substitute(myMap.FindIndex(it.Key().Reversed()), LastShape, LastList);
} }
} }
} }
@ -424,8 +435,8 @@ const TopTools_ListOfShape& BRepFill_OffsetWire::GeneratedShapes
myCallGen = Standard_True; myCallGen = Standard_True;
} }
if (myMap.IsBound(SpineShape)) { if (myMap.Contains(SpineShape)) {
return myMap(SpineShape); return myMap.FindFromKey(SpineShape);
} }
else { else {
static TopTools_ListOfShape Empty; static TopTools_ListOfShape Empty;
@ -604,7 +615,7 @@ void BRepFill_OffsetWire::Perform (const Standard_Real Offset,
void Compute (const TopoDS_Face& Spine, void Compute (const TopoDS_Face& Spine,
TopoDS_Shape& aShape, TopoDS_Shape& aShape,
BRepFill_DataMapOfOrientedShapeListOfShape& Map, BRepFill_IndexedDataMapOfOrientedShapeListOfShape& Map,
const Standard_Real Alt) const Standard_Real Alt)
{ {
BRep_Builder B; BRep_Builder B;
@ -627,7 +638,7 @@ void Compute (const TopoDS_Face& Spine,
for ( ; it1.More(); it1.Next(), it2.Next()) { for ( ; it1.More(); it1.Next(), it2.Next()) {
TopTools_ListOfShape List; TopTools_ListOfShape List;
List.Append(it2.Value()); List.Append(it2.Value());
Map.Bind(it1.Value(), List); Map.Add(it1.Value(), List);
} }
} }
} }
@ -749,7 +760,7 @@ void BRepFill_OffsetWire::PerformWithBiLo
TopoDS_Shape S [2]; TopoDS_Shape S [2];
TopoDS_Edge E [2]; TopoDS_Edge E [2];
TopLoc_Location L; TopLoc_Location L;
Standard_Integer k; Standard_Integer j, k;
for (Standard_Integer i = 1; i <= Locus.Graph()->NumberOfArcs(); i++) { for (Standard_Integer i = 1; i <= Locus.Graph()->NumberOfArcs(); i++) {
@ -779,9 +790,9 @@ void BRepFill_OffsetWire::PerformWithBiLo
// Recuperation des edges paralleles sur chaque face. // Recuperation des edges paralleles sur chaque face.
// Si pas d offset generees => saut a la bissectrice suivante. // Si pas d offset generees => saut a la bissectrice suivante.
//-------------------------------------------------------------- //--------------------------------------------------------------
if (myMap.IsBound(S[0]) && myMap.IsBound(S[1])) { if (myMap.Contains(S[0]) && myMap.Contains(S[1])) {
E [0] = TopoDS::Edge(myMap(S[0]).First()); E [0] = TopoDS::Edge(myMap.FindFromKey(S[0]).First());
E [1] = TopoDS::Edge(myMap(S[1]).First()); E [1] = TopoDS::Edge(myMap.FindFromKey(S[1]).First());
} }
else continue; else continue;
@ -923,13 +934,13 @@ void BRepFill_OffsetWire::PerformWithBiLo
TopoDS_Shape CurrentSpine; TopoDS_Shape CurrentSpine;
BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape ite1; //BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape ite1;
for (ite1.Initialize(myMap); ite1.More(); ite1.Next()) { for (j = 1; j <= myMap.Extent(); j++) {
CurrentSpine = ite1.Key(); CurrentSpine = myMap.FindKey(j);
CurrentEdge = TopoDS::Edge(myMap(CurrentSpine).First()); CurrentEdge = TopoDS::Edge(myMap(j).First());
myMap(CurrentSpine).Clear(); myMap(j).Clear();
if (MapBis.IsBound(CurrentEdge)) { if (MapBis.IsBound(CurrentEdge)) {
TopTools_SequenceOfShape S; TopTools_SequenceOfShape S;
if (!MapBis(CurrentEdge).IsEmpty()) { if (!MapBis(CurrentEdge).IsEmpty()) {
@ -939,14 +950,14 @@ void BRepFill_OffsetWire::PerformWithBiLo
MapVerPar(CurrentEdge) , MapVerPar(CurrentEdge) ,
S, MapVV); S, MapVV);
for ( k = 1; k <= S.Length(); k++) { for ( k = 1; k <= S.Length(); k++) {
myMap(CurrentSpine).Append(S.Value(k)); myMap(j).Append(S.Value(k));
} }
} }
else { else {
//----------------- //-----------------
// Cercles complets // Cercles complets
//----------------- //-----------------
myMap(CurrentSpine).Append(CurrentEdge); myMap(j).Append(CurrentEdge);
} }
} }
} }
@ -963,16 +974,18 @@ void BRepFill_OffsetWire::PerformWithBiLo
LV.Append( NewV.Oriented(TopAbs_FORWARD) ); LV.Append( NewV.Oriented(TopAbs_FORWARD) );
BRepTools_Substitution aSubst; BRepTools_Substitution aSubst;
aSubst.Substitute( OldV, LV ); aSubst.Substitute( OldV, LV );
for (ite1.Initialize(myMap); ite1.More(); ite1.Next()) for (j = 1; j <= myMap.Extent(); j++)
{ {
TopTools_ListIteratorOfListOfShape itl(ite1.Value()); TopTools_ListIteratorOfListOfShape itl(myMap(j));
for (; itl.More(); itl.Next()) for (; itl.More(); itl.Next())
{ {
aSubst.Build(itl.Value()); aSubst.Build(itl.Value());
if (aSubst.IsCopied(itl.Value())) if (aSubst.IsCopied(itl.Value()))
{ {
const TopTools_ListOfShape& listSh = aSubst.Copy(itl.Value()); const TopTools_ListOfShape& listSh = aSubst.Copy(itl.Value());
TopAbs_Orientation SaveOr = itl.Value().Orientation();
itl.Value() = listSh.First(); itl.Value() = listSh.First();
itl.Value().Orientation(SaveOr);
} }
} }
} }
@ -1044,7 +1057,7 @@ void BRepFill_OffsetWire::PerformWithBiLo
//purpose : //purpose :
//======================================================================= //=======================================================================
BRepFill_DataMapOfOrientedShapeListOfShape& BRepFill_IndexedDataMapOfOrientedShapeListOfShape&
BRepFill_OffsetWire::Generated() BRepFill_OffsetWire::Generated()
{ {
return myMap; return myMap;
@ -1153,27 +1166,28 @@ void BRepFill_OffsetWire::MakeWires()
TopTools_SequenceOfShape TheEdges; TopTools_SequenceOfShape TheEdges;
TopTools_ListOfShape TheWires; TopTools_ListOfShape TheWires;
TopTools_ListIteratorOfListOfShape itl; TopTools_ListIteratorOfListOfShape itl;
BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape ite; //BRepFill_DataMapIteratorOfDataMapOfOrientedShapeListOfShape ite;
TopTools_DataMapOfShapeListOfShape MVE; TopTools_IndexedDataMapOfShapeListOfShape MVE;
TopTools_DataMapIteratorOfDataMapOfShapeListOfShape MVEit; //TopTools_DataMapIteratorOfDataMapOfShapeListOfShape MVEit;
TopoDS_Vertex V1,V2,VF,CV; TopoDS_Vertex V1,V2,VF,CV;
Standard_Integer i;
for (ite.Initialize(myMap); ite.More(); ite.Next()) { for (i = 1; i <= myMap.Extent(); i++) {
for (itl.Initialize(ite.Value()); itl.More(); itl.Next()) { for (itl.Initialize(myMap(i)); itl.More(); itl.Next()) {
const TopoDS_Edge& E = TopoDS::Edge(itl.Value()); const TopoDS_Edge& E = TopoDS::Edge(itl.Value());
TopExp::Vertices (E,V1,V2); TopExp::Vertices (E,V1,V2);
if (V1.IsSame(V2) && IsSmallClosedEdge(E, V1)) if (V1.IsSame(V2) && IsSmallClosedEdge(E, V1))
continue; //remove small closed edges continue; //remove small closed edges
if (!MVE.IsBound(V1)) { if (!MVE.Contains(V1)) {
TopTools_ListOfShape empty; TopTools_ListOfShape empty;
MVE.Bind(V1,empty); MVE.Add(V1,empty);
} }
MVE(V1).Append(E); MVE.ChangeFromKey(V1).Append(E);
if (!MVE.IsBound(V2)) { if (!MVE.Contains(V2)) {
TopTools_ListOfShape empty; TopTools_ListOfShape empty;
MVE.Bind(V2,empty); MVE.Add(V2,empty);
} }
MVE(V2).Append(E); MVE.ChangeFromKey(V2).Append(E);
} }
} }
@ -1193,17 +1207,19 @@ void BRepFill_OffsetWire::MakeWires()
while (!MVE.IsEmpty()) { while (!MVE.IsEmpty()) {
B.MakeWire(NW); B.MakeWire(NW);
MVEit.Initialize(MVE); //MVEit.Initialize(MVE);
for(; MVEit.More(); MVEit.Next()) { for (i = 1; i <= MVE.Extent(); i++)
if(MVEit.Value().Extent() == 1) break; if(MVE(i).Extent() == 1)
} break;
if(!MVEit.More()) MVEit.Initialize(MVE); //if(!MVEit.More()) MVEit.Initialize(MVE);
if (i > MVE.Extent())
i = 1;
CV = VF = TopoDS::Vertex(MVEit.Key()); CV = VF = TopoDS::Vertex(MVE.FindKey(i));
CE = TopoDS::Edge(MVEit.Value().First()); CE = TopoDS::Edge(MVE(i).First());
End = Standard_False; End = Standard_False;
MVE(CV).RemoveFirst(); MVE.ChangeFromKey(CV).RemoveFirst();
// Modified by Sergey KHROMOV - Thu Mar 14 11:29:59 2002 Begin // Modified by Sergey KHROMOV - Thu Mar 14 11:29:59 2002 Begin
Standard_Boolean isClosed = Standard_False; Standard_Boolean isClosed = Standard_False;
@ -1218,29 +1234,44 @@ void BRepFill_OffsetWire::MakeWires()
B.Add (NW,CE); B.Add (NW,CE);
if (VF.IsSame(CV) || !MVE.IsBound(CV)) { if (VF.IsSame(CV) || !MVE.Contains(CV)) {
// Modified by Sergey KHROMOV - Thu Mar 14 11:30:14 2002 Begin // Modified by Sergey KHROMOV - Thu Mar 14 11:30:14 2002 Begin
isClosed = VF.IsSame(CV); isClosed = VF.IsSame(CV);
// Modified by Sergey KHROMOV - Thu Mar 14 11:30:15 2002 End // Modified by Sergey KHROMOV - Thu Mar 14 11:30:15 2002 End
End = Standard_True; End = Standard_True;
MVE.UnBind(VF); //MVE.UnBind(VF);
TopoDS_Shape LastShape = MVE.FindKey(MVE.Extent());
TopTools_ListOfShape LastList;
LastList.Append(MVE(MVE.Extent()));
MVE.RemoveLast();
if (MVE.FindIndex(VF) != 0)
MVE.Substitute(MVE.FindIndex(VF), LastShape, LastList);
} }
if (!End) { if (!End) {
if (MVE(CV).Extent() > 2) { if (MVE.FindFromKey(CV).Extent() > 2) {
//cout <<"vertex sur plus de 2 edges dans une face."<<endl; //cout <<"vertex sur plus de 2 edges dans une face."<<endl;
} }
for ( itl.Initialize(MVE(CV)); itl.More(); itl.Next()) { for ( itl.Initialize(MVE.FindFromKey(CV)); itl.More(); itl.Next()) {
if (itl.Value().IsSame(CE)) { if (itl.Value().IsSame(CE)) {
MVE(CV).Remove(itl); MVE.ChangeFromKey(CV).Remove(itl);
break; break;
} }
} }
if (!MVE(CV).IsEmpty()) { if (!MVE.FindFromKey(CV).IsEmpty()) {
CE = TopoDS::Edge(MVE(CV).First()); CE = TopoDS::Edge(MVE.FindFromKey(CV).First());
MVE(CV).RemoveFirst(); MVE.ChangeFromKey(CV).RemoveFirst();
}
if (MVE.FindFromKey(CV).IsEmpty())
{
//MVE.UnBind(CV);
TopoDS_Shape LastShape = MVE.FindKey(MVE.Extent());
TopTools_ListOfShape LastList;
LastList.Append(MVE(MVE.Extent()));
MVE.RemoveLast();
if (MVE.FindIndex(CV) != 0)
MVE.Substitute(MVE.FindIndex(CV), LastShape, LastList);
} }
if (MVE(CV).IsEmpty()) MVE.UnBind(CV);
} }
} }
// Modified by Sergey KHROMOV - Thu Mar 14 11:29:31 2002 Begin // Modified by Sergey KHROMOV - Thu Mar 14 11:29:31 2002 Begin
@ -1745,7 +1776,7 @@ void MakeCircle (const TopoDS_Edge& E,
const TopoDS_Vertex& V, const TopoDS_Vertex& V,
const TopoDS_Face& F, const TopoDS_Face& F,
const Standard_Real Offset, const Standard_Real Offset,
BRepFill_DataMapOfOrientedShapeListOfShape& Map, BRepFill_IndexedDataMapOfOrientedShapeListOfShape& Map,
const Handle(Geom_Plane)& RefPlane) const Handle(Geom_Plane)& RefPlane)
{ {
// eval the Axis of the Circle. // eval the Axis of the Circle.
@ -1769,7 +1800,7 @@ void MakeCircle (const TopoDS_Edge& E,
TopTools_ListOfShape LL; TopTools_ListOfShape LL;
LL.Append(OE); LL.Append(OE);
Map.Bind(V,LL); Map.Add(V,LL);
#ifdef DRAW #ifdef DRAW
if ( AffichGeom && !OE.IsNull()) { if ( AffichGeom && !OE.IsNull()) {
@ -1787,7 +1818,7 @@ void MakeCircle (const TopoDS_Edge& E,
void MakeOffset (const TopoDS_Edge& E, void MakeOffset (const TopoDS_Edge& E,
const TopoDS_Face& F, const TopoDS_Face& F,
const Standard_Real Offset, const Standard_Real Offset,
BRepFill_DataMapOfOrientedShapeListOfShape& Map, BRepFill_IndexedDataMapOfOrientedShapeListOfShape& Map,
const Handle(Geom_Plane)& RefPlane) const Handle(Geom_Plane)& RefPlane)
{ {
Standard_Real f,l; Standard_Real f,l;
@ -1849,7 +1880,7 @@ void MakeOffset (const TopoDS_Edge& E,
OE.Orientation(E.Orientation()); OE.Orientation(E.Orientation());
TopTools_ListOfShape LL; TopTools_ListOfShape LL;
LL.Append(OE); LL.Append(OE);
Map.Bind(E,LL); Map.Add(E,LL);
#ifdef DRAW #ifdef DRAW
if (AffichGeom && !OE.IsNull()) { if (AffichGeom && !OE.IsNull()) {

View File

@ -128,9 +128,8 @@ void MAT_Mat::CreateMat(Tool& atool)
Standard_Integer NbIterBis = 0; Standard_Integer NbIterBis = 0;
Standard_Integer EvenNbIterBis = 10; Standard_Integer EvenNbIterBis = 10;
Standard_Integer aControlSum = 0; TColStd_Array1OfInteger EdgeNumbers(1, EvenNbIterBis+1);
TColStd_Array1OfInteger ControlSums(1, EvenNbIterBis+1); EdgeNumbers.Init(-1);
Standard_Integer PrevEdgeNumber;
Standard_Boolean ToNullifyNoofbisectorstoremove = Standard_False; Standard_Boolean ToNullifyNoofbisectorstoremove = Standard_False;
Handle(MAT_ListOfBisector) currentbisectorlist; Handle(MAT_ListOfBisector) currentbisectorlist;
@ -225,8 +224,6 @@ void MAT_Mat::CreateMat(Tool& atool)
//=========================================================================== //===========================================================================
Standard_Integer NumberOfIte = 0; Standard_Integer NumberOfIte = 0;
PrevEdgeNumber = theedgelist->Number();
while(theedgelist->Number()>1) { while(theedgelist->Number()>1) {
@ -269,16 +266,15 @@ void MAT_Mat::CreateMat(Tool& atool)
// Calcul des intersections des bisectrices voisines.(etape 2.2) // Calcul des intersections des bisectrices voisines.(etape 2.2)
//-------------------------------------------------------------- //--------------------------------------------------------------
aControlSum += theedgelist->Number() - PrevEdgeNumber;
if (NbIterBis <= EvenNbIterBis+1) if (NbIterBis <= EvenNbIterBis+1)
ControlSums(NbIterBis) = aControlSum; EdgeNumbers(NbIterBis) = theedgelist->Number();
else else
{ {
for (k = 1; k <= EvenNbIterBis; k++) for (k = 1; k <= EvenNbIterBis; k++)
ControlSums(k) = ControlSums(k+1); EdgeNumbers(k) = EdgeNumbers(k+1);
ControlSums(EvenNbIterBis+1) = aControlSum; EdgeNumbers(EvenNbIterBis+1) = theedgelist->Number();
} }
if (ControlSums(EvenNbIterBis+1) == ControlSums(1)) if (EdgeNumbers(EvenNbIterBis+1) == EdgeNumbers(1))
ToNullifyNoofbisectorstoremove = Standard_True; ToNullifyNoofbisectorstoremove = Standard_True;
for(i=0; i<theedgelist->Number(); i++) { for(i=0; i<theedgelist->Number(); i++) {
@ -314,7 +310,6 @@ void MAT_Mat::CreateMat(Tool& atool)
// Test de sortie de la boucle 2. // Test de sortie de la boucle 2.
//------------------------------- //-------------------------------
PrevEdgeNumber = theedgelist->Number();
if (ToNullifyNoofbisectorstoremove) if (ToNullifyNoofbisectorstoremove)
noofbisectorstoremove = 0; noofbisectorstoremove = 0;
if(noofbisectorstoremove == 0) break; if(noofbisectorstoremove == 0) break;