File: bug25886

package info (click to toggle)
oce 0.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 301,548 kB
  • sloc: cpp: 1,190,609; ansic: 67,225; sh: 11,630; tcl: 7,954; cs: 5,221; python: 2,867; java: 1,522; makefile: 342; xml: 292; perl: 37
file content (35 lines) | stat: -rw-r--r-- 848 bytes parent folder | download | duplicates (3)
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 "3.28347"
set ok_len_c5x "3.28346"

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"
}

set only_screen_axo 1