mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Fixed regression of SelectMgr_ViewerSelector::SetPixelTolerance(). Removed redundant myToUpdateTolerance flag. SelectMgr_AxisIntersector::raySegmentDistance() - fixed usage of SquareModulus() instead of Modulus(). SelectMgr_ViewerSelector::TraverseSensitives() now skips both BVHSubset_2dPersistent and BVHSubset_3dPersistent relying on Camera. AIS_ViewController::handleXRMoveTo() now uses interface for picking by Axis explicitly instead of emulating axis by point picking.
25 lines
646 B
Plaintext
25 lines
646 B
Plaintext
puts "========"
|
|
puts "0032338: Visualization - provide straightforward interface for ray-picking"
|
|
puts "========"
|
|
puts ""
|
|
|
|
pload MODELING VISUALIZATION
|
|
box b 100 200 300
|
|
vinit View1
|
|
vdisplay -dispMode 1 b
|
|
vfit
|
|
vselmode b VERTEX 1
|
|
vselmode b FACE 1
|
|
set point1 [vmoveto 324 320]
|
|
vdump ${imagedir}/${casename}_p1.png
|
|
|
|
regexp {([-0-9.+eE]+ [-0-9.+eE]+ [-0-9.+eE]+)} ${point1} full p1
|
|
checkpoint "point1" $p1 {100 200 0} 0.001
|
|
|
|
vselaxis 50 -100 100 0 1 0 -display a
|
|
vmoveto 0 0
|
|
set point2 [vmoveto 324 320]
|
|
vdump ${imagedir}/${casename}_p2.png
|
|
regexp {([-0-9.+eE]+ [-0-9.+eE]+ [-0-9.+eE]+)} ${point1} full p2
|
|
checkpoint "point2" $p2 {100 200 0} 0.001
|