mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
28 lines
868 B
Plaintext
Executable File
28 lines
868 B
Plaintext
Executable File
|
|
puts "========================"
|
|
puts " OCC534 "
|
|
puts " case 3 "
|
|
puts "========================"
|
|
puts ""
|
|
|
|
hyperbola hyperbola 0 0 0 30 10
|
|
revsurf rs_hyperbola hyperbola 0 400 0 1 0 0
|
|
offset rs_hyperbola_of rs_hyperbola 5
|
|
mkface result rs_hyperbola_of .3 .5 .3 .5
|
|
|
|
set tolerance [maxtolerance result]
|
|
regexp { +Face +: +Min +[-0-9.+eE]+ +Max +([-0-9.+eE]+)} $tolerance full MaxFaceTolerance
|
|
regexp { +Edge +: +Min +[-0-9.+eE]+ +Max +([-0-9.+eE]+)} $tolerance full MaxEdgeTolerance
|
|
regexp { +Vertex +: +Min +[-0-9.+eE]+ +Max +([-0-9.+eE]+)} $tolerance full MaxVertexTolerance
|
|
|
|
if { $MaxFaceTolerance > 1 || $MaxEdgeTolerance > 1 || $MaxVertexTolerance > 1 } {
|
|
puts "Faulty : Tolerance of shape is more then 1.0"
|
|
} else {
|
|
puts "Tolerance is OK"
|
|
}
|
|
|
|
checkprops result -s 171.992
|
|
checkshape result
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|
|
|