mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Modification to create natural bounds for face based on the spherical and Bspline surface and having only one bound represented by Vertex loop was made. According to the specification of ISO-10303 part 42: "If the face has only one bound and this is of type vertex_loop, then the interior of the face is the domain of the face_surface.face_geometry. In such a case the underlying surface shall be closed (e.g. a spherical_surface.)" - natural bounds are applied only in case if VertexLoop is only the one defined face bound. Update of test-cases according to the new behavior Test-case for issue #24595
29 lines
802 B
Plaintext
29 lines
802 B
Plaintext
puts "================"
|
|
puts "OCC24595"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################################
|
|
# STEP import missing surfaces
|
|
#######################################################################################
|
|
|
|
set BugNumber OCC24595
|
|
stepread [locate_data_file bug24595_281390.stp] a *
|
|
explode a_1 f
|
|
set mlog [nbshapes a_1_3]
|
|
|
|
set status 1
|
|
|
|
if (![regexp {WIRE[ ]+: 1} $mlog]) {
|
|
set status 0
|
|
}
|
|
|
|
set mlog [bounding a_1_3]
|
|
if (![regexp {(-7.26623440743389) (-8.0984932752388978) (-150.09849327523889) (7.2662344074338865) (8.0984932752388978) (-141.90150672476111)} $mlog]) {
|
|
set status 0
|
|
}
|
|
|
|
if {$status == 1} {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
} |