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:
parent
7a9d451a98
commit
973f1c39ac
@ -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];
|
||||
|
17
tests/bugs/modalg_5/bug23891_1
Normal file
17
tests/bugs/modalg_5/bug23891_1
Normal 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
|
17
tests/bugs/modalg_5/bug23891_2
Normal file
17
tests/bugs/modalg_5/bug23891_2
Normal 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
|
17
tests/bugs/modalg_5/bug23891_3
Normal file
17
tests/bugs/modalg_5/bug23891_3
Normal 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
|
17
tests/bugs/modalg_5/bug23891_4
Normal file
17
tests/bugs/modalg_5/bug23891_4
Normal 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
|
Loading…
x
Reference in New Issue
Block a user