1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/hlr/begin
kgv 29263c947e 0031425: Visualization - free Edge has selection sensitivity inconsistent to presentation
BRepTools::Triangulation() has been extended with a new parameter for checking Poly_Polygon3D presense within free Edges.
StdPrs_WFShape::Add() now performs auto-triangulation in the same way as StdPrs_ShadedShape::Add().
StdSelect_BRepSelectionTool::GetEdgeSensitive() now creates Select3D_SensitiveSegment instead of Select3D_SensitiveCurve for tessellated segment.
Select3D_SensitiveSegment default sensitivity factor has been changed to 3 pixels to match Select3D_SensitiveCurve.

Test case bug23625_1, added workaround for out-of-range crash in HLRBRep_PolyAlgo on re-triangulated shape.
2020-03-12 19:29:23 +03:00

22 lines
455 B
Plaintext

pload TOPTEST
pload XDE
pload VISUALIZATION
if { [info exists imagedir] == 0 } {
set imagedir .
}
set depsilon 1.e-7
proc COMPUTE_HLR {viewname algotype} {
uplevel #0 top
uplevel #0 clear
uplevel #0 vinit View1
uplevel #0 vdisplay a
uplevel #0 $viewname
uplevel #0 vcomputehlr a result -algoType $algotype
uplevel #0 fit
if { [string compare $algotype "algo"] == 0 } {
uplevel #0 build3d result
}
}