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.
28 lines
710 B
Plaintext
28 lines
710 B
Plaintext
puts "================"
|
|
puts "OCC22494"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# BRepClass_FaceClassifier bug (ref SALOME issue 21185)
|
|
#######################################################################
|
|
|
|
set BugNumber OCC22494
|
|
|
|
restore [locate_data_file bug22494_Pb_belogToGeom_FACE.brep] Face
|
|
|
|
point p -3.53254182396379145e-05 0.000877856930738714065
|
|
|
|
set res [split [b2dclassify Face p] ]
|
|
|
|
set ll [llength ${res}]
|
|
if {${ll} < 4} {
|
|
puts "Bad format of bclassify draw-command; Faulty ${BugNumber}"
|
|
} else {
|
|
if {[regexp {The point is ON shape} $res]} {
|
|
puts "OK ${BugNumber}"
|
|
} else {
|
|
puts "Faulty ${BugNumber}"
|
|
}
|
|
}
|
|
|