mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Avoid repeated merging of the same chains of edges by processing all edges at once. Test cases for the issue.
31 lines
623 B
Plaintext
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]
|
|
|