mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0028207: Unexpected result of the unify same domain algorithm
- Now algorithm of merging edges uses angular tolerance
This commit is contained in:
parent
83f32108f6
commit
90271a9003
@ -1852,8 +1852,6 @@ void ShapeUpgrade_UnifySameDomain::IntUnifyFaces(const TopoDS_Shape& theInpShape
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
void ShapeUpgrade_UnifySameDomain::UnifyEdges()
|
void ShapeUpgrade_UnifySameDomain::UnifyEdges()
|
||||||
{
|
{
|
||||||
Standard_Real Tol = Precision::Confusion();
|
|
||||||
|
|
||||||
//Handle(ShapeBuild_ReShape) myContext = new ShapeBuild_ReShape;
|
//Handle(ShapeBuild_ReShape) myContext = new ShapeBuild_ReShape;
|
||||||
Standard_Real myTolerance = Precision::Confusion();
|
Standard_Real myTolerance = Precision::Confusion();
|
||||||
TopoDS_Shape aResult = myContext->Apply(myShape);
|
TopoDS_Shape aResult = myContext->Apply(myShape);
|
||||||
@ -1896,7 +1894,7 @@ void ShapeUpgrade_UnifySameDomain::UnifyEdges()
|
|||||||
SeqEdges.Append(expE.Current());
|
SeqEdges.Append(expE.Current());
|
||||||
SharedVert.Clear();
|
SharedVert.Clear();
|
||||||
CheckSharedVertices(SeqEdges, aMapEdgesVertex, myKeepShapes, SharedVert);
|
CheckSharedVertices(SeqEdges, aMapEdgesVertex, myKeepShapes, SharedVert);
|
||||||
MergeSeq(SeqEdges, Tol, myConcatBSplines, myContext,
|
MergeSeq(SeqEdges, myAngTol, myConcatBSplines, myContext,
|
||||||
myOldToGeneratedShapes, SharedVert,
|
myOldToGeneratedShapes, SharedVert,
|
||||||
myRemovedShapes, NewEdges2OldEdges);
|
myRemovedShapes, NewEdges2OldEdges);
|
||||||
}
|
}
|
||||||
@ -1958,7 +1956,7 @@ void ShapeUpgrade_UnifySameDomain::UnifyEdges()
|
|||||||
CheckSharedVertices(SeqEdges, aMapEdgesVertex, myKeepShapes, SharedVert);
|
CheckSharedVertices(SeqEdges, aMapEdgesVertex, myKeepShapes, SharedVert);
|
||||||
//if (!SharedVert.IsEmpty())
|
//if (!SharedVert.IsEmpty())
|
||||||
// continue;
|
// continue;
|
||||||
if ( MergeSeq(SeqEdges, Tol, myConcatBSplines, myContext,
|
if ( MergeSeq(SeqEdges, myAngTol, myConcatBSplines, myContext,
|
||||||
myOldToGeneratedShapes, SharedVert,
|
myOldToGeneratedShapes, SharedVert,
|
||||||
myRemovedShapes, NewEdges2OldEdges))
|
myRemovedShapes, NewEdges2OldEdges))
|
||||||
{
|
{
|
||||||
@ -1990,7 +1988,7 @@ void ShapeUpgrade_UnifySameDomain::UnifyEdges()
|
|||||||
{
|
{
|
||||||
SharedVert.Clear();
|
SharedVert.Clear();
|
||||||
CheckSharedVertices(aNonSharedEdges, aMapEdgesVertex, myKeepShapes, SharedVert);
|
CheckSharedVertices(aNonSharedEdges, aMapEdgesVertex, myKeepShapes, SharedVert);
|
||||||
if ( MergeSeq(aNonSharedEdges, Tol, myConcatBSplines, myContext,
|
if ( MergeSeq(aNonSharedEdges, myAngTol, myConcatBSplines, myContext,
|
||||||
myOldToGeneratedShapes, SharedVert,
|
myOldToGeneratedShapes, SharedVert,
|
||||||
myRemovedShapes, NewEdges2OldEdges))
|
myRemovedShapes, NewEdges2OldEdges))
|
||||||
{
|
{
|
||||||
|
20
tests/bugs/modalg_6/bug28207
Normal file
20
tests/bugs/modalg_6/bug28207
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC28207"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
#########################################################
|
||||||
|
## Unexpected result of the unify same domain algorithm
|
||||||
|
#########################################################
|
||||||
|
|
||||||
|
restore [locate_data_file bug28207_face.brep] s1
|
||||||
|
|
||||||
|
unifysamedom result1 s1
|
||||||
|
checknbshapes result1 -face 1 -wire 1 -edge 984
|
||||||
|
|
||||||
|
unifysamedom result2 s1 -a 0.001
|
||||||
|
checknbshapes result2 -face 1 -wire 1 -edge 223
|
||||||
|
|
||||||
|
unifysamedom result s1 -a 1.0
|
||||||
|
checknbshapes result -face 1 -wire 1 -edge 4
|
||||||
|
|
||||||
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
Loading…
x
Reference in New Issue
Block a user