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.
39 lines
684 B
Plaintext
Executable File
39 lines
684 B
Plaintext
Executable File
puts "============"
|
|
puts "OCC20964: Wrong result of cut operation for given shapes"
|
|
puts "============"
|
|
puts ""
|
|
|
|
restore [locate_data_file OCC20964_revsolid.brep] b1
|
|
restore [locate_data_file OCC20964_sphere.brep] b2
|
|
|
|
bclearobjects
|
|
bcleartools
|
|
baddobjects b1
|
|
baddtools b2
|
|
bfillds
|
|
|
|
# SECTION
|
|
bbop result 4
|
|
|
|
checkprops result -l 323.635
|
|
checkshape result
|
|
checksection result -r 0
|
|
|
|
set NbShapesRef "
|
|
Number of shapes in .*
|
|
VERTEX : 6
|
|
EDGE : 6
|
|
WIRE : 0
|
|
FACE : 0
|
|
SHELL : 0
|
|
SOLID : 0
|
|
COMPSOLID : 0
|
|
COMPOUND : 1
|
|
SHAPE : 13
|
|
"
|
|
|
|
checknbshapes result -ref $NbShapesRef
|
|
checkmaxtol result -ref 0.00013340609302644948
|
|
|
|
checkview -display result -2d -path ${imagedir}/${test_image}.png
|