1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
nbv 5fe14d0fac 0030354: BOP Cut doesn't modify the attached face
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.
2018-11-15 17:34:42 +03:00

26 lines
468 B
Plaintext

puts "TODO OCC11111 ALL: Faulty OCC132"
puts "================"
puts "OCC538"
puts "================"
puts ""
restore [locate_data_file OCC538.brep] Face
checkshape Face
point p 0.2453959532714904 -1.246869357124329
set res1 [b2dclassify Face p]
set info_result [split ${res1}]
set ll [llength ${info_result}]
if {${ll} < 4} {
puts "Faulty OCC132"
} else {
if {[regexp {IN} $info_result]} {
puts "OCC132 : OK"
} else {
puts "Faulty OCC132"
}
}