mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The problem of incorrect CUT is wrong Pcurve after projection onto cylinder of a small edge orthogonal to cylinder's axis. The result of projection is a line along V direction, but it should be along U. ProjLib_Cylinder has no specific functionality to build projection in most common case, so it should return "not done" flag to start projection based on curve approximation. Following changes are done: 1. ProjLib_Cylinder returns isDone=false in the following cases: * the projected line is not parallel to cylinder's axis * the plane of projected circle is not orthogonal to cylinder's axis 2. Test case added Minor correction of test case
29 lines
725 B
Plaintext
29 lines
725 B
Plaintext
puts "================"
|
|
puts "OCC27677"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Incorrect CUT of a solid by semi-infinite solid
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug27677_solid_halfspace.brep] s
|
|
restore [locate_data_file bug27677_real_frame_shape.brep] f
|
|
|
|
bop s f
|
|
boptuc result
|
|
|
|
# Check result validity.
|
|
checkshape result
|
|
|
|
# Check number of topological entities in the result.
|
|
checknbshapes result -solid 1 -shell 1 -face 11 -wire 12 -edge 32 -vertex 22
|
|
|
|
# Check result area.
|
|
checkprops result -s 2.82114
|
|
|
|
smallview
|
|
don result
|
|
fit
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|