0024326: Get rid of confusing extension line
[occt.git] / tests / bugs / moddata_2 / bug23643
CommitLineData
bf0ba813 1puts "========================"
2puts "OCC23643"
3puts "========================"
4puts ""
5#######################################################################
6# Intersection algorithm produces B-Spline curve in case of coaxial cones
7#######################################################################
8
9restore [locate_data_file bug23643_qf3.brep] b
10
11explode b
12copy b_1 f1
13copy b_2 f2
14
15mksurface s1 f1
16mksurface s2 f2
17
18trim s1t s1 0 2*pi -18 10
19trim s2t s2 0 2*pi -18 10
20
21intersect result s1t s2t
22
23set log [dump result]
24
25if {[regexp {Trimmed +curve} ${log}]} {
26 puts "Intersection algorithm work OK"
27} else {
28 puts "Error: Intersection algorithm work bad"
29}