mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
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.
97 lines
2.2 KiB
Plaintext
97 lines
2.2 KiB
Plaintext
puts "============"
|
|
puts "OCC26150"
|
|
puts "============"
|
|
puts ""
|
|
#########################################################################
|
|
# BRepOffsetAPI_ThruSections doesn't implement history method Generated()
|
|
#########################################################################
|
|
|
|
restore [locate_data_file bug27386_pr1.brep] pr1
|
|
restore [locate_data_file bug27386_pr2.brep] pr2
|
|
restore [locate_data_file bug27386_pr3.brep] pr3
|
|
beziercurve c1 3 0 50 -45 5 50 -50 0 50 -55
|
|
beziercurve c2 3 0 50 -45 -5 50 -50 0 50 -55
|
|
mkedge e1 c1
|
|
mkedge e2 c2
|
|
orientation e2 R
|
|
wire pr4 e1 e2
|
|
donly pr1 pr2 pr3 pr4
|
|
|
|
explode pr1
|
|
explode pr2
|
|
explode pr3
|
|
explode pr4
|
|
|
|
thrusections r 1 1 pr1 pr2 pr3 pr4 pr1
|
|
|
|
savehistory hist
|
|
|
|
generated r1 hist pr1_1
|
|
generated r2 hist pr1_2
|
|
generated r3 hist pr1_3
|
|
generated r4 hist pr1_4
|
|
generated r5 hist pr2_1
|
|
generated r6 hist pr2_2
|
|
generated r7 hist pr2_3
|
|
generated r8 hist pr3_1
|
|
generated r9 hist pr4_1
|
|
generated r10 hist pr4_2
|
|
|
|
checknbshapes r1 -face 8
|
|
checkprops r1 -s 1909.23
|
|
checknbshapes r2 -face 8
|
|
checkprops r2 -s 1520.59
|
|
checknbshapes r3 -face 8
|
|
checkprops r3 -s 2249.48
|
|
checknbshapes r4 -face 12
|
|
checkprops r4 -s 1518.88
|
|
checknbshapes r5 -face 12
|
|
checkprops r5 -s 2414.6
|
|
checknbshapes r6 -face 8
|
|
checkprops r6 -s 2416.3
|
|
checknbshapes r7 -face 16
|
|
checkprops r7 -s 2367.27
|
|
checknbshapes r8 -face 36
|
|
checkprops r8 -s 7198.18
|
|
checknbshapes r9 -face 20
|
|
checkprops r9 -s 3598.24
|
|
checknbshapes r10 -face 16
|
|
checkprops r10 -s 3599.94
|
|
|
|
explode pr1 v
|
|
explode pr2 v
|
|
explode pr3 v
|
|
explode pr4 v
|
|
|
|
generated r11 hist pr1_1
|
|
generated r12 hist pr1_2
|
|
generated r13 hist pr1_3
|
|
generated r14 hist pr1_4
|
|
generated r15 hist pr2_1
|
|
generated r16 hist pr2_2
|
|
generated r17 hist pr2_3
|
|
generated r18 hist pr3_1
|
|
generated r19 hist pr4_1
|
|
generated r20 hist pr4_2
|
|
|
|
checknbshapes r11 -edge 4
|
|
checkprops r11 -l 260.921
|
|
checknbshapes r12 -edge 4
|
|
checkprops r12 -l 260.921
|
|
checknbshapes r13 -edge 4
|
|
checkprops r13 -l 299.007
|
|
checknbshapes r14 -edge 4
|
|
checkprops r14 -l 299.007
|
|
checknbshapes r15 -edge 4
|
|
checkprops r15 -l 264.795
|
|
checknbshapes r16 -edge 4
|
|
checkprops r16 -l 311.127
|
|
checknbshapes r17 -edge 4
|
|
checkprops r17 -l 264.795
|
|
checknbshapes r18 -edge 4
|
|
checkprops r18 -l 280.806
|
|
checknbshapes r19 -edge 4
|
|
checkprops r19 -l 254.558
|
|
checknbshapes r20 -edge 4
|
|
checkprops r20 -l 311.127
|