mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Add choosing the intersect point taking into account the tangentCross when prev UEdge and next UEdge has more than one intersect points; Add exact correction of edge tolerance (it fix problems with edge tolerance on Linux); Add exact check of edge tolerance in testcase
27 lines
722 B
Plaintext
27 lines
722 B
Plaintext
puts "============"
|
|
puts "OCC29204"
|
|
puts "============"
|
|
puts ""
|
|
##################################################################################
|
|
# BRepOffsetAPI_MakePipeShell produces invalid result and raises exception in Draw
|
|
##################################################################################
|
|
|
|
restore [locate_data_file bug29204_sweep_spine.brep] sp
|
|
restore [locate_data_file bug29204_sweep_profile.brep] pr
|
|
|
|
mksweep sp
|
|
addsweep pr
|
|
buildsweep result -C -S
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -solid 1 -shell 1 -face 28 -wire 28 -edge 64 -vertex 36 -shape 158
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 0.003} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
checkprops result -v 1.16577e+007
|