mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Simple treatment of some analytical cases when curve is parallel or belongs surface is added in curve - face/surface intersection algorithm Treatment such cases is added in classifier algorithm Test case added
18 lines
513 B
Plaintext
18 lines
513 B
Plaintext
puts "========"
|
|
puts "OCC29606"
|
|
puts "========"
|
|
puts ""
|
|
#######################################################
|
|
#0029606: [Regression vs 7.0] BRepClass3d_SolidClassifier
|
|
#classifies the point as IN while it is ON
|
|
#######################################################
|
|
|
|
restore [locate_data_file bug29606.brep] s
|
|
|
|
point p1 621.05410336809734 47.416378469999998 111.25010709375
|
|
|
|
if {![regexp "The point is ON" [bclassify s p1]]} {
|
|
puts "Error: The Solid classification algorithm fails to classify the point"
|
|
}
|
|
|