mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1.The algorithm searching the section in the corner (ChooseSection) is modified to be able to find simple cases with rather big tolerance. 2. The constructor of BRepFill_Section is modified: now it removes locations in the shape of section like it was done in BRepFill_Pipe. 3. Correction of U-edges by Same Parameter has been added to the method BRepFill_Sweep::Build.
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.001} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|
|
|
|
checkprops result -v 1.16577e+007
|