1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/modalg_7/bug29502
emv 12d71ad6a5 0029502: Improve performance of the ShapeUpgrade_UnifySameDomain::UnifyEdges() method
Avoid repeated merging of the same chains of edges by processing all edges at once.

Test cases for the issue.
2018-02-15 16:51:46 +03:00

31 lines
623 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
explode r f
# perform unification of the seam edge:
# the split vertex should be removed
unifysamedom result r_1
checkshape result
checkprops result -equal f
checknbshapes result -ref [nbshapes f]