1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00
luzpaz dbdff3b004
Documentation - Fix various typos found in codebase (#413)
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`
2025-03-06 13:10:51 +00:00

29 lines
738 B
Plaintext

puts "========"
puts "0028866: Modeling Data - Problem with GeomAPI_ProjectPointOnSurf"
puts "========"
puts ""
restore [locate_data_file bug28866.brep] f
set CMP_TOL 5.0e-7
point p1 -0.028128 -0.836810 -0.019004
point p2 -0.028128 0.836810 -0.019004
point p3 -0.040434 -0.836810 -0.019022
point p4 -0.040434 0.836810 -0.019022
point p5 -0.031644 -0.819230 -0.018362
point p6 -0.045708 0.835050 -0.018969
point p7 0.086142 -0.606510 -0.009508
set pnts {"p1" "p2" "p3" "p4" "p5" "p6" "p7"}
foreach pnt ${pnts} {
set log [projponf f $pnt -min -t]
regexp {proj dist = ([-0-9.+eE]+)} ${log} full distmax
if { ${distmax} > ${CMP_TOL} } {
puts "Error: Wrong distance ($pnt)"
} else {
puts "OK: Good distance ($pnt)"
}
}