mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
BRepGProps now ignores faces without geometric surface to avoid access violation. BRepExtrema_DistShapeShape::DistanceMapMap() now skips comparison between void bounding boxes. BRepBndLib::Add() now ignores useTriangulation flag for faces without geometric surfaces, and uses triangulation if any for updating of the box.
25 lines
546 B
Plaintext
25 lines
546 B
Plaintext
puts "========"
|
|
puts "AIS_Shape - displaying TopoDS_Face with NULL surface (test case checks there is no crash)"
|
|
puts "========"
|
|
|
|
pload MODELING VISUALIZATION
|
|
|
|
restore [locate_data_file bug27821_nullsurf.brep] s
|
|
explode s F
|
|
|
|
# check that sprops does not crash on NULL surface
|
|
sprops s
|
|
|
|
# check that AIS_Shape does not crash on NULL surface
|
|
vclear
|
|
vinit View1
|
|
vaxo
|
|
vdisplay -noupdate -dispMode 0 s
|
|
vaspects s -subshapes s_1 -setcolor RED
|
|
vdisplay -noupdate -dispMode 1 s
|
|
vshowfaceboundary s 1
|
|
vfit
|
|
vselect 250 250
|
|
|
|
vdump $imagedir/${casename}.png
|