File: bug25886

package info (click to toggle)
opencascade 7.9.2%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 301,924 kB
  • sloc: cpp: 1,523,264; tcl: 10,159; cs: 5,173; java: 1,554; sh: 1,342; ansic: 827; xml: 699; makefile: 30; javascript: 22
file content (35 lines) | stat: -rw-r--r-- 888 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
puts "========"
puts "OCC25886"
puts "========"
puts ""
#################################################
# Wrong result obtained by projection algorithm
#################################################

set ok_len_c3x "1.57079"
set ok_len_c5x "1.57079"

smallview -2D-

restore [locate_data_file OCC25886_cx.brep] cx

explode cx
copy cx_1 f
mksurface s f
mkcurve c3 cx_3
mkcurve c5 cx_5
project c3x c3 s
project c5x c5 s

2dfit

set len_c3x [string range [lindex [length c3x] 4] 0 6]
set len_c5x [string range [lindex [length c5x] 4] 0 6]
if {$len_c3x != $ok_len_c3x} {
  puts "ERROR: OCC25866 is reproduced. Length of projection is $len_c3x, but expected length is $ok_len_c3x"
}
if {$len_c5x != $ok_len_c5x} {
  puts "ERROR: OCC25866 is reproduced. Length of projection is $len_c5x, but expected length is $ok_len_c5x"
}

checkview -screenshot -2d -path ${imagedir}/${test_image}.png