1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/tests/bugs/vis/bug24623_1
vpa f751596e46 0024623: Visualization - improve selection mechanism
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.
2015-04-06 17:27:38 +03:00

96 lines
2.6 KiB
Plaintext

puts "============"
puts "OCC24623_1"
puts "============"
puts ""
#######################################################################
puts "Visualization - improve selection mechanism"
# tests performance of selection algorithm. Creates a grid of spheres with
# size DISCRETISATION * DISCRETISATION. To get representative performance
# test results, increase the size of grid in DISCRETISATION and check time
# measurments in comparsion to previous OCCT versions. You may also check
# the time of selection when all BVH trees are built via uncommenting
# the code in "Start building all trees" section.
#######################################################################
set DISCRETISATION 10
set RADIUS 100
pload ALL
set aStep [expr $RADIUS * 0.1]
# unset aNames
list aNames
set aX 0
set aY 0
for {set i 0} {$i < $DISCRETISATION} {incr i} {
for {set j 0} {$j < $DISCRETISATION} {incr j} {
set aCurrName "sph"
append aCurrName [expr $i * $DISCRETISATION + $j]
lappend aNames $aCurrName
psphere $aCurrName $RADIUS
set aX [expr $i * ($aStep + $RADIUS)]
set aY [expr - $j * ($aStep + $RADIUS)]
ttranslate $aCurrName $aX $aY 0
}
}
set aSpheresNbInfo "Total spheres number:"
append aSpheresNbInfo [expr $DISCRETISATION * $DISCRETISATION]
puts $aSpheresNbInfo
vinit
set aMemInit [meminfo h]
puts "Initial mem: [expr $aMemInit / (1024 * 1024)] MiB ([expr $aMemInit])"
vsetdispmode 1
set aMemInit [meminfo h]
vdisplay {*}$aNames
vfit
puts "Selection of spheres without BVH trees built:"
chrono aTimer reset
chrono aTimer start
vmoveto 224 269
chrono aTimer stop
chrono aTimer show
puts ""
puts "Applying the transformations..."
vtranslateview 1 0 0
vrotate 100 100 100
puts ""
puts "Selection time with transformations applied without BVH built:"
chrono aTimer reset
chrono aTimer start
vmoveto 102 224
chrono aTimer stop
chrono aTimer show
# puts ""
# puts "Start building all trees..."
# vtop
# vfit
# set aStartPt [expr round(400 / double($DISCRETISATION)) + 5]
# set aPtStep [expr round(double(round(100*(400 / double($DISCRETISATION))))/100 * 2)]
# for {set i 0} {$i < $DISCRETISATION / 2} {incr i} {
# for {set j 0} {$j < $DISCRETISATION / 2} {incr j} {
# set aX [expr $aStartPt + $i * $aPtStep]
# set aY [expr $aStartPt + $j * $aPtStep]
# vmoveto $aX $aY 1
# }
# }
# puts ""
# puts "Selection time with all BVHs built:"
# chrono aTimer reset
# chrono aTimer start
# vmoveto 200 200
# chrono aTimer stop
# chrono aTimer show
set aMemSel [meminfo h]
puts "Selection mem: [expr $aMemSel / (1024 * 1024)] MiB ([expr $aMemSel])"
checkcolor 115 221 0 1 1