mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Modified method: Approx_ComputeLine::Compute Check of multicurve is now always unconditional, the procedure of check is modified to avoid infinite loops. Modified classes: GeomLib_CheckBSplineCurve and GeomLib_Check2dBSplineCurve Correction of poles at the ends of curve is modified to fit the direction of tangent defined by two first points or two last points of walking line. Also modified: BOPAlgo_PaveFiller: modified methods PostTreatFF, RemoveUsedVertices - now unused vertices are included in the list of vertices to be absorbed by other ones.
24 lines
835 B
Plaintext
Executable File
24 lines
835 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC28216"
|
|
puts "============"
|
|
puts ""
|
|
#####################################################################################################
|
|
# Intersection of a face and a solid is broken up leading to empty result of Boolean common operation
|
|
#####################################################################################################
|
|
|
|
restore [locate_data_file bug28216_initSurf.brep] s
|
|
restore [locate_data_file bug28216_solid.brep] o
|
|
|
|
bop s o
|
|
|
|
bopsection r_section
|
|
checknbshapes r_section -vertex 4 -edge 4 -m "bopsection"
|
|
bopcheck r_section
|
|
|
|
bopcommon r_common
|
|
checknbshapes r_common -vertex 4 -edge 4 -face 1 -m "bopcommon"
|
|
bopcheck r_common
|
|
|
|
checkview -display r_section -2d -path ${imagedir}/${test_image}-section.png
|
|
checkview -display r_common -2d -path ${imagedir}/${test_image}-common.png
|