mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Add the case of closed, smooth but not periodic surface (unification of faces lying on it if the flag "myConcatBSplines" is true - modify the underlying surface to make it periodic).
25 lines
645 B
Plaintext
25 lines
645 B
Plaintext
puts "================================================================================"
|
|
puts "OCC29382: ShapeUpgrade_UnifySameDomain algorithm incorrectly processes the shape"
|
|
puts "================================================================================"
|
|
puts ""
|
|
|
|
beziercurve a 5 0 0 0 1 0 0 2 2 0 0 0.5 0 0 0 0
|
|
mkedge a a
|
|
wire a a
|
|
mkplane a a
|
|
prism a a 0 0 1
|
|
box b -0.3 -0.2 0 1 0.4 1
|
|
bcommon shape a b
|
|
|
|
unifysamedom result shape +b
|
|
|
|
checkshape result
|
|
|
|
checknbshapes result -solid 1 -shell 1 -face 5 -wire 5 -edge 9 -vertex 5
|
|
|
|
set tolres [checkmaxtol result]
|
|
|
|
if { ${tolres} > 6.e-6} {
|
|
puts "Error: bad tolerance of result"
|
|
}
|