1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023891: Function fsameparameter throws an exception.

Added test cases bugs modalg_5/bug23891_1/bug23891_2/bug23891_3/bug23891_4
This commit is contained in:
pkv 2013-04-15 18:22:32 +04:00
parent 7a9d451a98
commit 973f1c39ac
5 changed files with 70 additions and 2 deletions

View File

@ -1040,8 +1040,8 @@ void BRepLib::SameParameter(const TopoDS_Edge& AnEdge,
}
// Eval tol2d to compute SameRange
Standard_Real UResol = GAS.UResolution(Tolerance);
Standard_Real VResol = GAS.VResolution(Tolerance);
Standard_Real UResol = Max(GAS.UResolution(Tolerance), Precision::PConfusion());
Standard_Real VResol = Max(GAS.VResolution(Tolerance), Precision::PConfusion());
Standard_Real Tol2d = Min(UResol, VResol);
for(Standard_Integer i = 0; i < 2; i++){
Handle(Geom2d_Curve) curPC = PC[i];

View File

@ -0,0 +1,17 @@
puts "========================"
puts "OCC23891"
puts "========================"
puts ""
#################################################
# Function fsameparameter throws an exception
#################################################
restore [locate_data_file bug23891_fsp6] result
fit
if [catch {fsameparameter result} catch_result] {
puts "Faulty : function fsameparameter throws an exception"
} else {
puts "OK : function fsameparameter works properly"
}
set 2dviewer 0

View File

@ -0,0 +1,17 @@
puts "========================"
puts "OCC23891"
puts "========================"
puts ""
#################################################
# Function fsameparameter throws an exception
#################################################
restore [locate_data_file bug23891_fsp7] result
fit
if [catch {fsameparameter result} catch_result] {
puts "Faulty : function fsameparameter throws an exception"
} else {
puts "OK : function fsameparameter works properly"
}
set 2dviewer 0

View File

@ -0,0 +1,17 @@
puts "========================"
puts "OCC23891"
puts "========================"
puts ""
#################################################
# Function fsameparameter throws an exception
#################################################
restore [locate_data_file bug23891_fsp8] result
fit
if [catch {fsameparameter result} catch_result] {
puts "Faulty : function fsameparameter throws an exception"
} else {
puts "OK : function fsameparameter works properly"
}
set 2dviewer 0

View File

@ -0,0 +1,17 @@
puts "========================"
puts "OCC23891"
puts "========================"
puts ""
#################################################
# Function fsameparameter throws an exception
#################################################
restore [locate_data_file bug23891_fsp9] result
fit
if [catch {fsameparameter result} catch_result] {
puts "Faulty : function fsameparameter throws an exception"
} else {
puts "OK : function fsameparameter works properly"
}
set 2dviewer 0