mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Classifier has been corrected to not take into account a probing point if the probing line appears to be tangent to the boundary at this point. But allow to use tangent point if all points on the edge are tangent. Modify bad test cases. Test case for issue CR26206
27 lines
645 B
Plaintext
27 lines
645 B
Plaintext
puts "================"
|
|
puts "OCC26206"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# BRepClass_FaceClassifier returns TopAbs_OUT for internal point
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug26206_group_1.brep] a
|
|
|
|
point p 0.012676794773312086 0.04799218752935417
|
|
|
|
set info [b2dclassify a p 1e-05]
|
|
|
|
if { [regexp "The point is IN shape" $info] == 1 } {
|
|
puts "OK: point is IN shape"
|
|
} else {
|
|
puts "Error : point should be IN shape"
|
|
}
|
|
|
|
pcurve a
|
|
|
|
#v2d2
|
|
view 1 -2D- 728 20 400 400
|
|
2dfit
|
|
xwd ${imagedir}/${test_image}.png
|