File: bug25861

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 (34 lines) | stat: -rw-r--r-- 944 bytes parent folder | download | duplicates (8)
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
puts "================"
puts "OCC25861"
puts "================"
puts ""
#######################################################################
# Wrong result obtained by projection algorithm.
#######################################################################

pload QAcommands

restore [locate_data_file bug25861_f3.brep] f3

point p 6.9184976310066668 -24.127668568051799 8.6427835999999978

set info [xprojponf p f3]

if { [regexp {point px +([-0-9.+eE]+) +([-0-9.+eE]+) +([-0-9.+eE]+)} ${info} string x2 y2 z2] != 1 } {
    puts "Error: Wrong result obtained by projection algorithm"
} else {
    puts "OK: Good result obtained by projection algorithm"

    vertex v1 p
    vertex v2 ${x2} ${y2} ${z2}

    set CMP_TOL 1.0e-7
    distmini res v1 v2
    set distmin [dval res_val]
    if { [expr abs(${distmin})] > ${CMP_TOL} } {
       puts "Error: Wrong projection point"
    } else {
       puts "OK: Good projection point"
    }

}