mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Redesign of selection mechanism: - implemented 3-level BVH tree for selection; - selection now calculates in 3D space; - intersection tests were moved to SelectMgr_BaseFrustum descendants; - removed .cdl files in Select3D and .cdl related to selection in MeshVS; - SelectMgr_ViewerSelectors are now shared between local and global contexts; - transformations of sensitive entities are now stored in SelectMgr_SelectableObject only. Sensitive entities are independent from transformations, it is applied to SelectMgr_SelectingVolumeManager instance only; - connected and multiple connected interactive objects are now represented by their child objects only for SelectMgr_SelectionManager; - if interactive object has child objects, they will be stored as separate objects in SelectMgr_SelectionManager now. - test cases bugs/vis/bug24623_1, bug24623_2, bug24623_3, bug24623_4 to test performance and memory issues.
75 lines
1.7 KiB
Plaintext
75 lines
1.7 KiB
Plaintext
puts "============"
|
|
puts "OCC24623_2"
|
|
puts "============"
|
|
puts ""
|
|
#######################################################################
|
|
puts "Visualization - improve selection mechanism"
|
|
# tests performance of selection algorithm. Creates a spiral via polyline
|
|
# and checks its selection in neutral point. For representative result,
|
|
# increase the number of points in POINTS_NUM and check time measurments
|
|
# in comparsion to previous OCCT versions.
|
|
#######################################################################
|
|
|
|
set POINTS_NUM 1000
|
|
set STEP 0.3
|
|
|
|
pload ALL
|
|
|
|
set aCoef 0.2
|
|
set aZ 0
|
|
# unset aPointCoords
|
|
list aPointCoords
|
|
for {set i 0} {$i < $POINTS_NUM} {incr i} {
|
|
set aX [expr $aCoef * $aZ * cos($aZ)]
|
|
set aY [expr $aCoef * $aZ * sin($aZ)]
|
|
set aZ [expr $aZ + $STEP]
|
|
lappend aPointCoords $aX
|
|
lappend aPointCoords $aY
|
|
lappend aPointCoords $aZ
|
|
}
|
|
|
|
vinit
|
|
set aMemInit [meminfo h]
|
|
puts "Initial mem: [expr $aMemInit / (1024 * 1024)] MiB ([expr $aMemInit])"
|
|
polyline p {*}$aPointCoords
|
|
vdisplay p
|
|
|
|
vfit
|
|
|
|
puts "Selection time before the transformations:"
|
|
chrono aTimer reset
|
|
chrono aTimer start
|
|
vmoveto 223 236
|
|
chrono aTimer stop
|
|
chrono aTimer show
|
|
vmoveto 0 0
|
|
chrono aTimer reset
|
|
chrono aTimer start
|
|
vmoveto 223 236
|
|
chrono aTimer stop
|
|
chrono aTimer show
|
|
|
|
puts ""
|
|
puts "Applying transformations..."
|
|
vtranslateview 1 0 0
|
|
vrotate 100 100 100
|
|
|
|
puts ""
|
|
puts "Selection time after the transformations:"
|
|
chrono aTimer reset
|
|
chrono aTimer start
|
|
vmoveto 115 160
|
|
chrono aTimer stop
|
|
chrono aTimer show
|
|
vmoveto 0 0
|
|
chrono aTimer reset
|
|
chrono aTimer start
|
|
vmoveto 115 160
|
|
chrono aTimer stop
|
|
chrono aTimer show
|
|
|
|
set aMemSel [meminfo h]
|
|
puts "Selection mem: [expr $aMemSel / (1024 * 1024)] MiB ([expr $aMemSel])"
|
|
|
|
checkcolor 131 195 0 1 1
|