mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40: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
37 lines
805 B
Plaintext
Executable File
37 lines
805 B
Plaintext
Executable File
puts "================"
|
|
puts "OCC23994"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# GeomAPI_ExtremaCurveCurve class calculates wrong values
|
|
#######################################################################
|
|
|
|
set BugNumber CR23994
|
|
|
|
pload XDE
|
|
|
|
ReadStep D [locate_data_file bug23994_AirfoilRhomb_CalcDist_17_OP_Bell_Mouth_Roughing_shroud.stp]
|
|
|
|
XCheckProps D
|
|
|
|
XGetShape airflIntersctCrv D 0:1:1:1
|
|
XGetShape rhombIntersctCrv D 0:1:1:2
|
|
|
|
explode rhombIntersctCrv
|
|
mkcurve rhomb rhombIntersctCrv_1
|
|
|
|
explode airflIntersctCrv
|
|
mkcurve airfl airflIntersctCrv_1
|
|
|
|
extrema airfl rhomb
|
|
|
|
if { [isdraw ext_1] } {
|
|
mkedge result ext_1
|
|
checkprops result -l 5.14563
|
|
checksection result
|
|
} else {
|
|
puts "${BugNumber}: invalid result"
|
|
}
|
|
|
|
set 2dviewer 1
|