1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/modalg_6/bug26150_3
emv 4f7d41eac3 0029604: Uniform mechanism providing History of shape's modifications for OCCT algorithms in DRAW
Implementation of the mechanism for unification of the history commands for all OCCT algorithms.
The following Draw commands should be used to track the history of shapes modifications of any operation:
- modified - to find the shapes modified from the given shape in the given history.
- generated - to find the shapes generated from the given shape in the given history.
- isdeleted - to check if the given shape has been deleted during operation.

The mechanism allows fast & easy enabling of the DRAW history support for the algorithms supporting the history on the API level (i.e. the algorithm should have the methods Modified(), Generated() and IsDeleted()).
To enable the draw history support it is necessary to store the history of the algorithm into the session. For instance:

TopTools_ListOfShape Objects = ...; // Objects
TopTools_ListOfShape Tools = ...; // Tools

BRepAlgoAPI_Cut aCut(Objects, Tools); // Boolean cut operation

BRepTest_Objects::SetHistory(Objects, aCut); // Store the history for the Objects (overwrites the history in the session)
BRepTest_Objects::AddHistory(Tools, aCut);   // Add the history for the Tools

To get the stored history in draw the command "savehistory" should be used. It saves the history kept in session into a Drawable object with the given name:

# perform cut
bcut r s1 s2

# save history of cut
savehistory cut_history

explode s1 f
modified m cut_history s1_1

The Draw History commands of the following algorithms have been removed:
- Boolean Operations;
- Defeaturing;
- Unify same domain;
- Sweep;
- Thrusections;

All these algorithms have been switched to support the new Draw history mechanism.

The Fillet and Blend algorithms have been also enabled to support history commands.
2018-04-12 13:30:56 +03:00

78 lines
1.7 KiB
Plaintext

puts "============"
puts "OCC26150"
puts "============"
puts ""
#########################################################################
# BRepOffsetAPI_ThruSections doesn't implement history method Generated()
#########################################################################
polyline w1 -10 -10 0 10 -10 0 10 10 0 -10 10 0 -10 -10 0
polyline w2 0 -10 20 -10 7 20 10 8 20 0 -10 20
circle w3 0 0 40 10
mkedge w3 w3
wire w3 w3
explode w1
explode w2
explode w3
thrusections r 1 0 w1 w2 w3
savehistory hist
generated r1 hist w1_1
generated r2 hist w1_2
generated r3 hist w1_3
generated r4 hist w1_4
generated r5 hist w2_1
generated r6 hist w2_2
generated r7 hist w2_3
generated r8 hist w3_1
checknbshapes r1 -face 2
checkprops r1 -s 679.305
checknbshapes r2 -face 3
checkprops r2 -s 649.975
checknbshapes r3 -face 1
checkprops r3 -s 554.732
checknbshapes r4 -face 2
checkprops r4 -s 648.481
checknbshapes r5 -face 2
checkprops r5 -s 828.494
checknbshapes r6 -face 3
checkprops r6 -s 837.872
checknbshapes r7 -face 3
checkprops r7 -s 866.128
checknbshapes r8 -face 8
checkprops r8 -s 2532.49
explode w1 v
explode w2 v
explode w3 v
generated r9 hist w1_1
generated r10 hist w1_2
generated r11 hist w1_3
generated r12 hist w1_4
generated r13 hist w2_1
generated r14 hist w2_2
generated r15 hist w2_3
generated r16 hist w3_1
checknbshapes r9 -edge 1
checkprops r9 -l 43.4094
checknbshapes r10 -edge 1
checkprops r10 -l 43.6285
checknbshapes r11 -edge 1
checkprops r11 -l 40.596
checknbshapes r12 -edge 1
checkprops r12 -l 40.9228
checknbshapes r13 -edge 1
checkprops r13 -l 40.0003
checknbshapes r14 -edge 1
checkprops r14 -l 40.3103
checknbshapes r15 -edge 1
checkprops r15 -l 40.3794
checknbshapes r16 -edge 1
checkprops r16 -l 40.9892