mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
This problem occurs because of obtaining 2 ALines which share same vertex on the seam edge. There should be 2 different vertices with same(or almost the same) 3d parameters, but with different UV parameters because of periodic surface. Current fix allows to avoid the same vertices on seam edge and also checks the next vertex. Added consideration of predicted next point to avoid skipping tha point which is not on seam edge. Added test case for #33702
23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
puts "================================"
|
|
puts "0033615: Modeling Algorithms - Partition algorithm creates unexpected vertices"
|
|
puts "================================"
|
|
puts ""
|
|
|
|
plane plane -5 0 4 -1 0 0
|
|
pcone cone plane 3 1 10
|
|
pcylinder cylinder 10 20
|
|
explode cylinder f
|
|
explode cone f
|
|
|
|
don cylinder_1 cone_1
|
|
axo;fit
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects cone_1
|
|
baddtools cylinder_1
|
|
bfillds
|
|
bbuild result
|
|
|
|
checknbshapes result -vertex 5 -edge 8 -wire 5 -face 4
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|