mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-15 13:48:57 +08:00
- removal of excess interferences in case of simple hiding face - correct processing of boundary edges coinciding with outlines - change of API for testing Draw Command - correction of Draw command "build3d" - test cases are added. Linux reference data is changed. Partially fixed 0027340: Insufficient exact HLR speed Number of samples in PolyPoly intersection algorithm tuned in each instance of generic class. Default number of the samples in Geom2dAdaptor is changed according to the Adaptor2d_Curve2d class. Minimal number of points in case of B-Spline is changed. Minimal number of samples support is added in intersection algorithms.
35 lines
698 B
Plaintext
35 lines
698 B
Plaintext
puts "============"
|
|
puts "OCC27341"
|
|
puts "============"
|
|
puts ""
|
|
######################################################
|
|
# Incorrect exact HLR results
|
|
######################################################
|
|
|
|
pload XDE
|
|
pload QAcommands
|
|
|
|
testreadstep [locate_data_file bug27341_Assembly_BILZ_WFL2_1_CAD.stp] a
|
|
|
|
set viewname "right"
|
|
|
|
smallview
|
|
top
|
|
clear
|
|
|
|
OCC27341 result a ${viewname}
|
|
build3d result
|
|
|
|
fit
|
|
|
|
checkprops result -l 5910.01
|
|
|
|
# 0027526: Excess micro-edge in HLR visualization of a torus
|
|
if { [regexp {Windows} [dversion]] } {
|
|
checknbshapes result -vertex 1461 -edge 731
|
|
} else {
|
|
checknbshapes result -vertex 1460 -edge 730
|
|
}
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|