mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
The reason of this problem is in wrong work of classifier algorithm (see the message ~0080992 to the issue #30354). Therefore, the algorithm of IntTools_FClass2d class has been improved. Namely, now orientation of the polygon is computed from area-criterion instead of angle. As result, some simplification of the method IntTools_FClass2d::Init(...) has been made. <!break> 1. New constructor has been added to the class CSLib_Class2d. It allows applying TColgp_SequenceOfPnt2d. 2. DRAW-commands "addpolygonnode" and "polygonprops" have been created. They are covered by the test case "tests/geometry/2dpolygon/A1". 3. New method Poly::PolygonProperties(...) has been created. See help for detailed information. 4. New testgrid "lowalgos classifier" has been created.
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
|