mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0023751: Test case bugs modalg bug6334 does not work with new Boolean Operation Algorithm.
Fix for the bug. Added simple condition: If the map myShapes (map of the parts of the tool that should be in result shape) is not filled then boolean operation of the given type will be performed. Modified test case bugs/modalg_4/bug6334. Small correction test cases
This commit is contained in:
parent
b7a3c4704b
commit
3389667b4c
@ -26,6 +26,9 @@ class Builder from BRepFeat
|
||||
-- kept parts of the tool.
|
||||
-- Input data: a) DS;
|
||||
-- b) The kept parts of the tool;
|
||||
-- If the map of the kept parts of the tool
|
||||
-- is not filled boolean operation of the
|
||||
-- given type will be performed;
|
||||
-- c) Operation required.
|
||||
-- Steps: a) Fill myShapes, myRemoved maps;
|
||||
-- b) Rebuild edges and faces;
|
||||
|
@ -231,35 +231,38 @@
|
||||
{
|
||||
myOperation = myFuse ? BOPAlgo_FUSE : BOPAlgo_CUT;
|
||||
//
|
||||
Prepare();
|
||||
//
|
||||
RebuildFaces();
|
||||
//
|
||||
FillImagesContainers(TopAbs_SHELL);
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
FillImagesSolids();
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
CheckSolidImages();
|
||||
//
|
||||
BuildResult(TopAbs_SOLID);
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
FillImagesCompounds();
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
BuildResult(TopAbs_COMPOUND);
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
if (!myShapes.IsEmpty()) {
|
||||
//
|
||||
Prepare();
|
||||
//
|
||||
RebuildFaces();
|
||||
//
|
||||
FillImagesContainers(TopAbs_SHELL);
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
FillImagesSolids();
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
CheckSolidImages();
|
||||
//
|
||||
BuildResult(TopAbs_SOLID);
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
FillImagesCompounds();
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
BuildResult(TopAbs_COMPOUND);
|
||||
if (myErrorStatus) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
//
|
||||
BuildShape();
|
||||
|
@ -1,5 +1,5 @@
|
||||
puts "TODO OCC11111 ALL: Error : The square of result shape is"
|
||||
puts "TODO OCC11111 ALL: Error : Result shape is WRONG"
|
||||
puts "TODO ?OCC11111 ALL: Error : Result shape is WRONG"
|
||||
|
||||
puts "============"
|
||||
puts "OCC6272"
|
||||
|
@ -1,5 +1,3 @@
|
||||
puts "TODO OCC11111 ALL: Error : Result shape is WRONG"
|
||||
|
||||
puts "============"
|
||||
puts "OCC6334"
|
||||
puts "============"
|
||||
@ -42,15 +40,15 @@ renamevar h result
|
||||
|
||||
set square 117509
|
||||
|
||||
set nb_v_good 32
|
||||
set nb_e_good 53
|
||||
set nb_v_good 30
|
||||
set nb_e_good 51
|
||||
set nb_w_good 27
|
||||
set nb_f_good 24
|
||||
set nb_sh_good 1
|
||||
set nb_sol_good 1
|
||||
set nb_compsol_good 0
|
||||
set nb_compound_good 1
|
||||
set nb_shape_good 139
|
||||
set nb_shape_good 135
|
||||
|
||||
|
||||
# 4. Check thickness of box and hole
|
||||
|
@ -1,6 +1,6 @@
|
||||
# by apn master-master 03.12.2012
|
||||
puts "TODO OCC12345 ALL: Error : The square of result shape is"
|
||||
puts "TODO OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
puts "TODO ?OCC12345 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||
#puts "TODO OCC12345 ALL: An exception was caught"
|
||||
#puts "TODO OCC12345 ALL: \\*\\* Exception \\*\\*.*"
|
||||
#puts "TODO OCC12345 ALL: TEST INCOMPLETE"
|
||||
|
Loading…
x
Reference in New Issue
Block a user