1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/heal/bug29502
jgv c6f14a5213 0031558: BRepOffsetAPI_MakeFilling algorithm makes turned inside out face
1. Modification in method BRepFill_Filling::Build - correction of building the wire.
2. Create new subgroup "filling" in the group "bugs".
2020-05-22 11:07:35 +03:00

32 lines
660 B
Plaintext

puts "========"
puts "OCC29502"
puts "========"
puts ""
#################################################
# Improve performance of the ShapeUpgrade_UnifySameDomain::UnifyEdges() method
#################################################
# create cylinder
cylinder c 0 0 0 0 0 1 10
mkface f c 0 2*pi -10 10
# split seam edge by the vertex
vertex v 10 0 0
bclearobjects
bcleartools
baddobjects f
baddtools v
bfillds
bsplit r
checknbshapes r -vertex 3 -edge 4 -wire 1 -face 1
# perform unification of the seam edge:
# the split vertex should be removed
unifysamedom result r
checkshape result
checkprops result -equal f
checknbshapes result -ref [nbshapes f]