mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Various improvements in point-solid classifier: 1) Refactoring. 2) BndBoxTree is extracted into separate class. 3) UB-tree calculation is cashed to improve point-solid classification speed. 4) Ray / curve intersection improved by trimmed parameters and correct order. 5) Fixes in logic. 6) Calculation caching at the classifier level. 3D-claasifier now takes into the account the vertex/edges tolerances. If the given point lays inside the tolerance area of vertex or edge of the solid it's classified as TopAbs_ON. The behavior of IntCurvesFace_Intersector::Perform was changed. Now it may use optional null-tolerance to classify 2d-point relatively to the given face. UBTreeFiller is used to speedup intersection process between edges/vertices and the point. The test case 'boolean gdml_private ZH2' extensively uses the SolidClassifier. After this fix it returns the correct classification statuses, which leads to incorrect result shape (reported by checkshape). Yet the result shape without this fix also seems to be incorrect (one of the isolines goes out of boundary of the face). Thats why it's marked with 'TODO'. Corrections in test cases. Test case is added.
18 lines
600 B
Plaintext
18 lines
600 B
Plaintext
puts "============"
|
|
puts "OCC27117"
|
|
puts "============"
|
|
puts ""
|
|
############################################################################
|
|
# BRepClass3d_SolidClassifier doesn't take into account vertex/edge/face tolerances
|
|
############################################################################
|
|
|
|
restore [locate_data_file bug27117.brep] s
|
|
point p 103.740000000001 1.85e-014 24.3498644581774
|
|
|
|
set cls [bclassify s p]
|
|
if { [regexp {IN} $cls] } {
|
|
puts "Error : Wrong result obtained by solid classifier algorithm"
|
|
} else {
|
|
puts "OK : Good result obtained by solid classifier algorithm"
|
|
}
|