mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0028493: [Regression vs 7.0.0] Intersection algorithm produces curve with loop
1. New testgrid "lowalgos/intss" has been created. It will contain all test cases on geometrical intersection of two surfaces ("intersect" DRAW-command) and two faces ("bopcurves" DRAW-command). 2. New test case for the issue #28493 has been created because the problem is not reproduced on MASTER. 3. Test case (lowalgos/intss/bug24472) for the issue #29501 has been modified in order to check loops of the resulting intersection curves.
This commit is contained in:
parent
100be67aa4
commit
a6ebe9fc7c
@ -2,4 +2,5 @@
|
||||
002 bnd
|
||||
003 extcs
|
||||
004 extcc
|
||||
005 2dgcc
|
||||
005 2dgcc
|
||||
006 intss
|
30
tests/lowalgos/intss/begin
Normal file
30
tests/lowalgos/intss/begin
Normal file
@ -0,0 +1,30 @@
|
||||
# Checks whether theCurve has a loop/bend
|
||||
# Use: CheckLoops curve CosMaxAngle [theNbPoints]}
|
||||
# theNbPoints sets the interval of discretization;
|
||||
# theCosMaxAngle sets the maximal rotation angle between two adjacent segments. This value must be equal to the cosine of this angle.
|
||||
|
||||
help CheckLoops {curve CosMaxAngle theNbPoints }
|
||||
proc CheckLoops {theCurve theCosMaxAngle {theNbPoints 1000.0}} {
|
||||
upvar #0 $theCurve aCurve
|
||||
bounds aCurve U1 U2
|
||||
|
||||
set delta [dval (U2-U1)/$theNbPoints]
|
||||
cvalue aCurve [dval U1] xp yp zp dx1 dy1 dz1
|
||||
|
||||
for {set p [dval U1]} {$p <= [dval U2]} {set p [expr $p + $delta]} {
|
||||
cvalue aCurve $p xp yp zp dx2 dy2 dz2
|
||||
|
||||
#Check if the angle between the vectors {dx1 dy1 dz1} and {dx2 dy2 dz2} is less than 30deg.
|
||||
set nv1 [ dval dx1*dx1+dy1*dy1+dz1*dz1 ]
|
||||
set nv2 [ dval dx2*dx2+dy2*dy2+dz2*dz2 ]
|
||||
set dp [ dval dx1*dx2+dy2*dy2+dz1*dz2 ]
|
||||
|
||||
if {$dp < [ expr $theCosMaxAngle * sqrt($nv1 * $nv2) ] } {
|
||||
puts "Error: The curve aCurve is possible to have a bend at parameter $p. Please check carefully"
|
||||
}
|
||||
|
||||
dset dx1 dx2
|
||||
dset dy1 dy2
|
||||
dset dz1 dz2
|
||||
}
|
||||
}
|
0
tests/bugs/moddata_1/buc60623_3 → tests/lowalgos/intss/buc60623_3
Executable file → Normal file
0
tests/bugs/moddata_1/buc60623_3 → tests/lowalgos/intss/buc60623_3
Executable file → Normal file
0
tests/bugs/moddata_1/buc60815 → tests/lowalgos/intss/buc60815
Executable file → Normal file
0
tests/bugs/moddata_1/buc60815 → tests/lowalgos/intss/buc60815
Executable file → Normal file
0
tests/bugs/moddata_1/bug106 → tests/lowalgos/intss/bug106
Executable file → Normal file
0
tests/bugs/moddata_1/bug106 → tests/lowalgos/intss/bug106
Executable file → Normal file
0
tests/bugs/moddata_1/bug139 → tests/lowalgos/intss/bug139
Executable file → Normal file
0
tests/bugs/moddata_1/bug139 → tests/lowalgos/intss/bug139
Executable file → Normal file
0
tests/bugs/moddata_1/bug20524 → tests/lowalgos/intss/bug20524
Executable file → Normal file
0
tests/bugs/moddata_1/bug20524 → tests/lowalgos/intss/bug20524
Executable file → Normal file
0
tests/bugs/moddata_1/bug20766 → tests/lowalgos/intss/bug20766
Executable file → Normal file
0
tests/bugs/moddata_1/bug20766 → tests/lowalgos/intss/bug20766
Executable file → Normal file
0
tests/bugs/moddata_1/bug22720 → tests/lowalgos/intss/bug22720
Executable file → Normal file
0
tests/bugs/moddata_1/bug22720 → tests/lowalgos/intss/bug22720
Executable file → Normal file
0
tests/bugs/moddata_1/bug22723 → tests/lowalgos/intss/bug22723
Executable file → Normal file
0
tests/bugs/moddata_1/bug22723 → tests/lowalgos/intss/bug22723
Executable file → Normal file
0
tests/bugs/modalg_5/bug22766 → tests/lowalgos/intss/bug22766
Executable file → Normal file
0
tests/bugs/modalg_5/bug22766 → tests/lowalgos/intss/bug22766
Executable file → Normal file
0
tests/bugs/moddata_2/bug22851 → tests/lowalgos/intss/bug22851
Executable file → Normal file
0
tests/bugs/moddata_2/bug22851 → tests/lowalgos/intss/bug22851
Executable file → Normal file
0
tests/bugs/moddata_2/bug22923 → tests/lowalgos/intss/bug22923
Executable file → Normal file
0
tests/bugs/moddata_2/bug22923 → tests/lowalgos/intss/bug22923
Executable file → Normal file
0
tests/bugs/modalg_2/bug23218 → tests/lowalgos/intss/bug23218
Executable file → Normal file
0
tests/bugs/modalg_2/bug23218 → tests/lowalgos/intss/bug23218
Executable file → Normal file
0
tests/bugs/moddata_3/bug23471 → tests/lowalgos/intss/bug23471
Executable file → Normal file
0
tests/bugs/moddata_3/bug23471 → tests/lowalgos/intss/bug23471
Executable file → Normal file
0
tests/bugs/moddata_2/bug23576 → tests/lowalgos/intss/bug23576
Executable file → Normal file
0
tests/bugs/moddata_2/bug23576 → tests/lowalgos/intss/bug23576
Executable file → Normal file
0
tests/bugs/moddata_2/bug236 → tests/lowalgos/intss/bug236
Executable file → Normal file
0
tests/bugs/moddata_2/bug236 → tests/lowalgos/intss/bug236
Executable file → Normal file
0
tests/bugs/moddata_2/bug23643 → tests/lowalgos/intss/bug23643
Executable file → Normal file
0
tests/bugs/moddata_2/bug23643 → tests/lowalgos/intss/bug23643
Executable file → Normal file
0
tests/bugs/moddata_2/bug23644 → tests/lowalgos/intss/bug23644
Executable file → Normal file
0
tests/bugs/moddata_2/bug23644 → tests/lowalgos/intss/bug23644
Executable file → Normal file
0
tests/bugs/modalg_2/bug23699 → tests/lowalgos/intss/bug23699
Executable file → Normal file
0
tests/bugs/modalg_2/bug23699 → tests/lowalgos/intss/bug23699
Executable file → Normal file
0
tests/bugs/moddata_2/bug237 → tests/lowalgos/intss/bug237
Executable file → Normal file
0
tests/bugs/moddata_2/bug237 → tests/lowalgos/intss/bug237
Executable file → Normal file
0
tests/bugs/modalg_2/bug23732 → tests/lowalgos/intss/bug23732
Executable file → Normal file
0
tests/bugs/modalg_2/bug23732 → tests/lowalgos/intss/bug23732
Executable file → Normal file
0
tests/bugs/moddata_3/bug23981 → tests/lowalgos/intss/bug23981
Executable file → Normal file
0
tests/bugs/moddata_3/bug23981 → tests/lowalgos/intss/bug23981
Executable file → Normal file
0
tests/bugs/moddata_3/bug24142 → tests/lowalgos/intss/bug24142
Executable file → Normal file
0
tests/bugs/moddata_3/bug24142 → tests/lowalgos/intss/bug24142
Executable file → Normal file
0
tests/bugs/modalg_5/bug24299 → tests/lowalgos/intss/bug24299
Executable file → Normal file
0
tests/bugs/modalg_5/bug24299 → tests/lowalgos/intss/bug24299
Executable file → Normal file
0
tests/bugs/modalg_5/bug24313 → tests/lowalgos/intss/bug24313
Executable file → Normal file
0
tests/bugs/modalg_5/bug24313 → tests/lowalgos/intss/bug24313
Executable file → Normal file
0
tests/bugs/modalg_7/bug24418_1 → tests/lowalgos/intss/bug24418_1
Executable file → Normal file
0
tests/bugs/modalg_7/bug24418_1 → tests/lowalgos/intss/bug24418_1
Executable file → Normal file
0
tests/bugs/modalg_7/bug24418_2 → tests/lowalgos/intss/bug24418_2
Executable file → Normal file
0
tests/bugs/modalg_7/bug24418_2 → tests/lowalgos/intss/bug24418_2
Executable file → Normal file
6
tests/bugs/modalg_5/bug24472 → tests/lowalgos/intss/bug24472
Executable file → Normal file
6
tests/bugs/modalg_5/bug24472 → tests/lowalgos/intss/bug24472
Executable file → Normal file
@ -32,6 +32,9 @@ foreach c [directory ii12*] {
|
||||
puts "Error: Wrong curve's range!"
|
||||
}
|
||||
|
||||
# cos(~75.5deg)
|
||||
CheckLoops $c 0.25
|
||||
|
||||
xdistcs $c s1 U1 U2 10 $MaxToler
|
||||
xdistcs $c s2 U1 U2 10 $MaxToler
|
||||
}
|
||||
@ -58,6 +61,9 @@ foreach c [directory ii13*] {
|
||||
puts "Error: Wrong curve's range!"
|
||||
}
|
||||
|
||||
# cos(~75.5deg)
|
||||
CheckLoops $c 0.25
|
||||
|
||||
xdistcs $c s1 U1 U2 10 $MaxToler
|
||||
xdistcs $c s2 U1 U2 10 $MaxToler
|
||||
}
|
0
tests/bugs/modalg_5/bug24643 → tests/lowalgos/intss/bug24643
Executable file → Normal file
0
tests/bugs/modalg_5/bug24643 → tests/lowalgos/intss/bug24643
Executable file → Normal file
0
tests/bugs/modalg_5/bug24915 → tests/lowalgos/intss/bug24915
Executable file → Normal file
0
tests/bugs/modalg_5/bug24915 → tests/lowalgos/intss/bug24915
Executable file → Normal file
0
tests/bugs/modalg_5/bug25193 → tests/lowalgos/intss/bug25193
Executable file → Normal file
0
tests/bugs/modalg_5/bug25193 → tests/lowalgos/intss/bug25193
Executable file → Normal file
0
tests/bugs/modalg_5/bug25224 → tests/lowalgos/intss/bug25224
Executable file → Normal file
0
tests/bugs/modalg_5/bug25224 → tests/lowalgos/intss/bug25224
Executable file → Normal file
0
tests/bugs/modalg_5/bug25248 → tests/lowalgos/intss/bug25248
Executable file → Normal file
0
tests/bugs/modalg_5/bug25248 → tests/lowalgos/intss/bug25248
Executable file → Normal file
0
tests/bugs/modalg_5/bug25380 → tests/lowalgos/intss/bug25380
Executable file → Normal file
0
tests/bugs/modalg_5/bug25380 → tests/lowalgos/intss/bug25380
Executable file → Normal file
0
tests/bugs/moddata_3/bug25782_1 → tests/lowalgos/intss/bug25782_1
Executable file → Normal file
0
tests/bugs/moddata_3/bug25782_1 → tests/lowalgos/intss/bug25782_1
Executable file → Normal file
0
tests/bugs/moddata_3/bug25782_2 → tests/lowalgos/intss/bug25782_2
Executable file → Normal file
0
tests/bugs/moddata_3/bug25782_2 → tests/lowalgos/intss/bug25782_2
Executable file → Normal file
0
tests/bugs/modalg_5/bug25818 → tests/lowalgos/intss/bug25818
Executable file → Normal file
0
tests/bugs/modalg_5/bug25818 → tests/lowalgos/intss/bug25818
Executable file → Normal file
0
tests/bugs/modalg_5/bug25828_3 → tests/lowalgos/intss/bug25828_3
Executable file → Normal file
0
tests/bugs/modalg_5/bug25828_3 → tests/lowalgos/intss/bug25828_3
Executable file → Normal file
0
tests/bugs/modalg_5/bug25828_4 → tests/lowalgos/intss/bug25828_4
Executable file → Normal file
0
tests/bugs/modalg_5/bug25828_4 → tests/lowalgos/intss/bug25828_4
Executable file → Normal file
0
tests/bugs/modalg_5/bug25842 → tests/lowalgos/intss/bug25842
Executable file → Normal file
0
tests/bugs/modalg_5/bug25842 → tests/lowalgos/intss/bug25842
Executable file → Normal file
0
tests/bugs/modalg_6/bug25890 → tests/lowalgos/intss/bug25890
Executable file → Normal file
0
tests/bugs/modalg_6/bug25890 → tests/lowalgos/intss/bug25890
Executable file → Normal file
0
tests/bugs/modalg_5/bug25898 → tests/lowalgos/intss/bug25898
Executable file → Normal file
0
tests/bugs/modalg_5/bug25898 → tests/lowalgos/intss/bug25898
Executable file → Normal file
0
tests/bugs/modalg_6/bug26151_1 → tests/lowalgos/intss/bug26151_1
Executable file → Normal file
0
tests/bugs/modalg_6/bug26151_1 → tests/lowalgos/intss/bug26151_1
Executable file → Normal file
0
tests/bugs/modalg_6/bug26151_2 → tests/lowalgos/intss/bug26151_2
Executable file → Normal file
0
tests/bugs/modalg_6/bug26151_2 → tests/lowalgos/intss/bug26151_2
Executable file → Normal file
0
tests/bugs/modalg_6/bug26251 → tests/lowalgos/intss/bug26251
Executable file → Normal file
0
tests/bugs/modalg_6/bug26251 → tests/lowalgos/intss/bug26251
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user