mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
- Added function checkprops, set default tolerance parameter to 1.0e-4 - Using "area" instead of "square". - Options "-equal\notequal" isn't used together with "-s" in blend and offset test cases. - Correct regressions/differences/improvements and CPU problem (set props tolerance to 0.1) - Corrected test cases to use checkprops proc. - Correct image difference - Updated TODOs in test cases. - Updated test cases to get correct images of result shape
29 lines
807 B
Plaintext
Executable File
29 lines
807 B
Plaintext
Executable File
|
|
puts "========================"
|
|
puts " OCC534 "
|
|
puts " case 1 "
|
|
puts "========================"
|
|
puts ""
|
|
|
|
hyperbola hyperbola 0 0 0 30 10
|
|
extsurf es_hyperbola hyperbola 0 0 1
|
|
offset es_hyperbola_of es_hyperbola 5
|
|
mkface result es_hyperbola_of 0 3 0 40
|
|
|
|
|
|
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 11451.2
|
|
checkshape result
|
|
set 2dviewer 0
|
|
|