mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Make the algorithm BRepOffsetAPI_NormalProjection use section operation instead of common to get the edge-result of projection to be in face restrictions. Correct Boolean operation algorithm to produce correctly oriented result in the case of common between face and edge. The algorithm ShapeUpgrade_UnifySameDomain has been patched to correctly gather same domain faces in a compound. The TCL script snowflake.tcl has been corrected to get rid of dependence on the order of edges in the result of Boolean operation.
32 lines
794 B
Plaintext
32 lines
794 B
Plaintext
puts "========"
|
|
puts "OCC29234"
|
|
puts "========"
|
|
puts ""
|
|
#################################################
|
|
# BRepOffsetAPI_NormalProjection produces INTERNAL edges and vertices
|
|
#################################################
|
|
|
|
restore [locate_data_file bug29234_cyl_n_wire.brep] a
|
|
explode a
|
|
renamevar a_1 f
|
|
renamevar a_2 w
|
|
nproject r w f
|
|
foreach e [explode r e] {
|
|
if [regexp "INTERNAL" [dtyp $e]] {
|
|
puts "Error: projection result contains edges oriented INTERNAL"
|
|
break
|
|
}
|
|
}
|
|
don r
|
|
fit
|
|
checknbshapes r -m "projection result" -edge 4
|
|
checkview -display r -2d -path ${imagedir}/${test_image}_1.png
|
|
|
|
bcommon r1 f r
|
|
foreach e [explode r1 e] {
|
|
if [regexp "INTERNAL" [dtyp $e]] {
|
|
puts "Error: result of common between face and edge contains edges oriented INTERNAL"
|
|
break
|
|
}
|
|
}
|