mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
AIS_ConnectedInteractive now shares HLR computation code with AIS_Shape. BRepTools_WireExplorer::Orientation() now returns TopAbs_FORWARD instead of throwing exception in case of infinite Edge without vertices. StdSelect_BRepSelectionTool::GetSensitiveForFace() now creates Select3D_SensitiveCurve from 2 points in case of infinite Edge instead of Select3D_SensitiveFace.
23 lines
447 B
Plaintext
Executable File
23 lines
447 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC129 - infinite cylinder is not selectable in 3D Viewer"
|
|
puts "================"
|
|
puts ""
|
|
|
|
cylinder c 0 0 1 10
|
|
mkface f c
|
|
|
|
vclear
|
|
vinit View1
|
|
vdisplay -dispMode 0 f
|
|
# check dynamic highlighting
|
|
vmoveto 207 184
|
|
checkcolor 207 184 0 1 1
|
|
# check selected highlighting
|
|
vselect 207 184
|
|
checkcolor 207 184 0.8 0.8 0.8
|
|
# check unselected
|
|
vselect 222 175
|
|
checkcolor 207 184 1 1 0
|
|
|
|
vdump ${imagedir}/${casename}.png
|