mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Found via `codespell -q 3 -S "*.fr" -L aadd,abnd,abord,acces,acount,adn,afile,aline,alo,alocation,alog,als,anc,ane,anid,anormal,anout,ans,anumber,aother,aparent,apoints,aprogram,asender,asign,asnd,ba,bbuild,bloc,bord,bu,caf,cas,childrens,childs,classe,clen,commun,cylindre,discret,don,dout,dum,ede,enew,entite,entites,extrem,fo,fonction,geometrie,guid,hilight,hilights,hist,identic,ii,indx,inout,invalide,ist,iterm,llength,lod,maked,mape,mke,modeling,methode,mye,myu,nam,nd,nin,normale,normales,ons,parametre,parametres,periode,pinter,pres,projet,remplace,reste,resul,secont,serie,siz,shs,slin,som,somme,syntaxe,sur,te,thei,theis,ther,theres,thes,thev,thex,thet,tol,transfert,unhilight,unhilights,va,vas,verifie,vertexes,weight`
90 lines
2.4 KiB
Plaintext
90 lines
2.4 KiB
Plaintext
puts "================"
|
|
puts "OCC25223"
|
|
puts "================"
|
|
puts ""
|
|
#######################################################################
|
|
# Wrong result done by projection algorithm
|
|
#######################################################################
|
|
|
|
restore [locate_data_file bug25223_surface] s
|
|
restore [locate_data_file bug25223_curve] c
|
|
|
|
project c2d c s
|
|
|
|
# I.
|
|
#Parameters : 2.50050886855066 2.71802559491834
|
|
regexp {Parameters : ([-0-9.+eE]+) ([-0-9.+eE]+)} [dump c] full a1 a2
|
|
set good_a1 2.50050886855066
|
|
set good_a2 2.71802559491834
|
|
set c_tol 1.e-13
|
|
if { [expr abs(${a1} - ${good_a1}) ] > ${c_tol} } {
|
|
puts "Error: invalid a1 parameter"
|
|
}
|
|
if { [expr abs(${a2} - ${good_a2}) ] > ${c_tol} } {
|
|
puts "Error: invalid a2 parameter"
|
|
}
|
|
|
|
# II.
|
|
set u1 2.6
|
|
cvalue c $u1 x y z
|
|
vertex v1 x y z
|
|
point p1 x y z
|
|
|
|
mkface f s
|
|
set proj_fp [projponf f p1]
|
|
#proj dist = 9.8455689542838467e-014
|
|
|
|
regexp {proj dist = ([-0-9.+eE]+)} ${proj_fp} full dist
|
|
regexp {uvproj = ([-0-9.+eE]+) ([-0-9.+eE]+)} ${proj_fp} full uproj vproj
|
|
regexp {pproj = ([-0-9.+eE]+) ([-0-9.+eE]+) ([-0-9.+eE]+)} ${proj_fp} full proj1 proj2
|
|
|
|
puts "dist=${dist}"
|
|
puts "uproj=${uproj}"
|
|
puts "vproj=${vproj}"
|
|
puts "proj1=${proj1}"
|
|
puts "proj2=${proj2}"
|
|
|
|
set CMP_TOL [checkmaxtol f]
|
|
|
|
puts "CMP_TOL=${CMP_TOL}"
|
|
|
|
set good_dist 9.8455689542838467e-14
|
|
set good_uproj 0.66864242394263962
|
|
set good_vproj 0.53857983853386682
|
|
set good_proj1 336.79267755053786
|
|
set good_proj2 -256.45869438720723
|
|
|
|
if { [expr abs(${dist} - ${good_dist}) ] > ${CMP_TOL} } {
|
|
puts "Error: invalid dist"
|
|
}
|
|
if { [expr abs(${uproj} - ${good_uproj}) ] > ${CMP_TOL} } {
|
|
puts "Error: invalid uproj"
|
|
}
|
|
if { [expr abs(${vproj} - ${good_vproj}) ] > ${CMP_TOL} } {
|
|
puts "Error: invalid vproj"
|
|
}
|
|
if { [expr abs(${proj1} - ${good_proj1}) ] > ${CMP_TOL} } {
|
|
puts "Error: invalid proj1"
|
|
}
|
|
if { [expr abs(${proj2} - ${good_proj2}) ] > ${CMP_TOL} } {
|
|
puts "Error: invalid proj2"
|
|
}
|
|
|
|
# III.
|
|
2dcvalue c2d $u1 u v
|
|
svalue s u v x y z
|
|
vertex v2 x y z
|
|
distmini d v1 v2
|
|
#the distance value is : 3.99072821948773e-08
|
|
|
|
regexp {([-0-9.+eE]+)$} [dump d_val] full dist
|
|
regexp { +Vertex +: +Min +[-0-9.+eE]+ +Max +([-0-9.+eE]+)} [ maxtolerance d ] full toler
|
|
set good_dist 3.99072821948773e-08
|
|
if { [expr abs( ${dist} - ${good_dist} )] > ${toler} } {
|
|
puts "Error : the distance is ${dist}. It is bad value"
|
|
}
|
|
|
|
smallview
|
|
fit
|
|
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|