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.
92 lines
2.0 KiB
Plaintext
92 lines
2.0 KiB
Plaintext
puts "============"
|
|
puts "OCC26150"
|
|
puts "============"
|
|
puts ""
|
|
#########################################################################
|
|
# BRepOffsetAPI_ThruSections doesn't implement history method Generated()
|
|
#########################################################################
|
|
|
|
restore [locate_data_file bug27386_pr2.brep] pr2
|
|
polyline pr1 5 0 0 5 -5 0 -5 -5 0 -5 0 0
|
|
explode pr2
|
|
wire pr2 pr2_1 pr2_2
|
|
circle cc 0 100 0 5
|
|
trim cc cc 0 pi
|
|
mkedge cc cc
|
|
wire pr3 cc
|
|
beziercurve c1 3 0 50 -45 5 50 -50 0 50 -55
|
|
beziercurve c2 3 0 50 -45 -5 50 -50 0 50 -55
|
|
trim c1 c1 0.5 1
|
|
trim c2 c2 0.5 1
|
|
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 0 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 pr2_1
|
|
generated r5 hist pr2_2
|
|
generated r6 hist pr3_1
|
|
generated r7 hist pr4_1
|
|
generated r8 hist pr4_2
|
|
|
|
checknbshapes r1 -face 1
|
|
checkprops r1 -s 1427.73
|
|
checknbshapes r2 -face 2
|
|
checkprops r2 -s 2845.67
|
|
checknbshapes r3 -face 1
|
|
checkprops r3 -s 1427.73
|
|
checknbshapes r4 -face 2
|
|
checkprops r4 -s 2850.56
|
|
checknbshapes r5 -face 2
|
|
checkprops r5 -s 2850.56
|
|
checknbshapes r6 -face 4
|
|
checkprops r6 -s 5701.12
|
|
checknbshapes r7 -face 2
|
|
checkprops r7 -s 2850.56
|
|
checknbshapes r8 -face 2
|
|
checkprops r8 -s 2850.56
|
|
|
|
explode pr1 v
|
|
explode pr2 v
|
|
explode pr3 v
|
|
explode pr4 v
|
|
|
|
generated r9 hist pr1_1
|
|
generated r10 hist pr1_2
|
|
generated r11 hist pr1_3
|
|
generated r12 hist pr1_4
|
|
generated r13 hist pr2_1
|
|
generated r14 hist pr2_2
|
|
generated r15 hist pr2_3
|
|
generated r16 hist pr3_1
|
|
generated r17 hist pr3_2
|
|
generated r18 hist pr4_1
|
|
generated r19 hist pr4_2
|
|
generated r20 hist pr4_3
|
|
|
|
checkprops r9 -l 322.713
|
|
checkprops r10 -l 347.889
|
|
checkprops r11 -l 347.889
|
|
checkprops r12 -l 322.713
|
|
checkprops r13 -l 322.713
|
|
checkprops r14 -l 363.603
|
|
checkprops r15 -l 322.713
|
|
checkprops r16 -l 322.713
|
|
checkprops r17 -l 322.713
|
|
checkprops r18 -l 322.713
|
|
checkprops r19 -l 363.603
|
|
checkprops r20 -l 322.713
|