From c204d492ae9eca4adca0ba30c67b9e120b0b8b2e Mon Sep 17 00:00:00 2001 From: nbv Date: Mon, 12 Sep 2016 17:48:59 +0300 Subject: [PATCH] 0027851: Wrong result of classification of the point relative to the solid Test case creation. --- tests/bugs/modalg_6/bug27851 | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/bugs/modalg_6/bug27851 diff --git a/tests/bugs/modalg_6/bug27851 b/tests/bugs/modalg_6/bug27851 new file mode 100644 index 0000000000..8f167092c7 --- /dev/null +++ b/tests/bugs/modalg_6/bug27851 @@ -0,0 +1,27 @@ +puts "============" +puts "OCC27851" +puts "============" +puts "" +############################################################################ +# Wrong result of classification of the point relative to the solid +############################################################################ + +restore [locate_data_file bug27851_shape.brep] s + +point p1 249.16536718159901 0.22123613283038124 5.3100000000000005 +point p2 249.16536718159901 0.22123613283038124 6.1800000000000006 + +set cls1 [bclassify s p1] +set cls2 [bclassify s p2] + +if { [regexp {IN} $cls1] } { + puts "OK : Good result of classification of a point p1 relative to solid" +} else { + puts "Error : Wrong result of classification of a point p1 relative to solid" +} + +if { [regexp {IN} $cls2] } { + puts "OK : Good result of classification of a point p2 relative to solid" +} else { + puts "Error : Wrong result of classification of a point p2 relative to solid" +}