mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
New method for building surface polyhedron (class IntCurveSurface_Polyhedron), which takes in account intervals of discontinuity of surface is added for constructor IntCurvesFace_Intersector. Bug in methods NbU(V)Intervals and U(V)Intervals for Offset surfaces is fixed.
22 lines
566 B
Plaintext
22 lines
566 B
Plaintext
puts "========"
|
|
puts "OCC28490"
|
|
puts "========"
|
|
puts ""
|
|
###########################################################
|
|
# Point located outside the solid is classified as inside
|
|
###########################################################
|
|
|
|
restore [locate_data_file bug28490_solid_vertex1.brep] a
|
|
explode a
|
|
mkpoint p a_2
|
|
set case_output [string trim [bclassify a_1 p]]
|
|
|
|
if {$case_output != "The point is OUT of shape"} {
|
|
puts "ERROR: OCC28490 is reproduced. Point is classified as INNER."
|
|
}
|
|
|
|
smallview
|
|
fit
|
|
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|