mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +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
31 lines
945 B
Plaintext
Executable File
31 lines
945 B
Plaintext
Executable File
|
|
puts "================"
|
|
puts "BUC61037"
|
|
puts "OCC108"
|
|
puts "================"
|
|
puts ""
|
|
#####################################################################
|
|
## BRepTools::AddUVBounds for the planar face bounded by a circle returns too small bounding box.
|
|
#####################################################################
|
|
|
|
restore [locate_data_file bug61037.brep] sh1
|
|
checkshape sh1
|
|
|
|
set rr [bounding sh1]
|
|
regexp { *([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} $rr full v1_x v1_y v1_z v2_x v2_y v2_z
|
|
vertex v1 $v1_x $v1_y $v1_z
|
|
vertex v2 $v2_x $v2_y $v2_z
|
|
edge result v1 v2
|
|
regexp {Mass +: +([-0-9.+eE]+)} [lprops result] full dis
|
|
if { [expr $dis < 0.201357] } {
|
|
puts "Faulty BUC61037: Planar circle and bounded face a returns too small bounding box"
|
|
} else {
|
|
puts "OCC134 OK: bounding box is correct"
|
|
}
|
|
|
|
checkprops result -l 0.201357
|
|
checkshape result
|
|
checksection result
|
|
set 2dviewer 0
|
|
|