1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/moddata_3/bug23830_2
abk c858bb1084 0024712: Extend DRAW commands "vertex" and "extrema". Create test to check all points for bug 23830.
DRAW command "vertex" was extended to create vertex from point.
DRAW command "extrema" was extended and unified: both extrema points are outputted to DRAW in case of too close points;
parameters of extremal points are outputted.
35 shapes were added for anti-regression tests.
Second DRAW test was created for bug CR23830.

Move shapes to shape-repository
2014-04-04 12:57:32 +04:00

67 lines
1.6 KiB
Plaintext

puts "================"
puts "OCC23830_2"
puts "================"
puts ""
#######################################################################
# BRepExtrema_DistShapeShape does not find intersection of face with edge
#######################################################################
restore [locate_data_file bug23830_face.brep] f
mksurface s f
for {set i 1} {$i <= 45} {incr i} {
restore [locate_data_file bug23830_circle$i.brep] c_$i
mkcurve c_$i c_$i
extrema s c_$i 1
if {![isdraw ext_1_2] || ![isdraw ext_1_3]} {
puts "Error: invalid result"
}
vertex v${i}_1 ext_1_2
vertex v${i}_2 ext_1_3
unset ext_1_2
unset ext_1_3
}
for {set i 1} {$i <= 45} {incr i} {
regexp {Point\s3D\s:\s([-0-9+.e, ]+)} [dump v${i}_1] aDummy aP1
regexp {Point\s3D\s:\s([-0-9+.e, ]+)} [dump v${i}_2] aDummy aP2
regexp {(^[-0-9+.e]+)} $aP1 aDummy aX1
regexp {,\s([-0-9+.e]+),\s} $aP1 aDummy aY1
regexp {\s([-0-9+.e]+)$} $aP2 aDummy aZ1
regexp {(^[-0-9+.e]+)} $aP2 aDummy aX2
regexp {,\s([-0-9+.e]+),\s} $aP2 aDummy aY2
regexp {\s([-0-9+.e]+)$} $aP2 aDummy aZ2
set aC${i}_1 [concat "$aX1 $aY1 $aZ1"]
set aC${i}_2 [concat "$aX2 $aY2 $aZ2"]
set aD$i [expr sqrt(($aX2 - $aX1) * ($aX2 - $aX1) + ($aY2 - $aY1) * ($aY2 - $aY1) + ($aZ2 - $aZ1) * ($aZ2 - $aZ1))]
if {[set aD$i] > 1e-11} {
puts "Error: invalid result ($i)"
}
}
for {set i 1} {$i <= 45} {incr i} {
puts ""
puts "$i"
puts [set aC${i}_1]
puts [set aC${i}_2]
puts [set aD$i]
}
smallview
l
l
l
l
l
l
l
l
erase
display f
for {set i 1} {$i <= 45} {incr i} {
display v${i}_1
display v${i}_2
}
fit
set only_screen_axo 1