Home
last modified time | relevance | path

Searched refs:Padj (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/povray37/povray-3.7.0.10/source/backend/shape/
H A Dovus.cpp99 VECTOR Padj, Ipoint; in Intersect_Ovus_Spheres() local
111 VScale(Padj, P, -1); in Intersect_Ovus_Spheres()
114 VDot(OCSquared, Padj, Padj); in Intersect_Ovus_Spheres()
116 VDot(t_Closest_Approach, Padj, D); in Intersect_Ovus_Spheres()
143 VSub(Padj, Second_Center, P); in Intersect_Ovus_Spheres()
145 VDot(OCSquared, Padj, Padj); in Intersect_Ovus_Spheres()
175 VSub(Padj, P, Second_Center); in Intersect_Ovus_Spheres()
180 Py2 = Padj[Y] * Padj[Y]; in Intersect_Ovus_Spheres()
182 PDy2 = Padj[Y] * D[Y]; in Intersect_Ovus_Spheres()
184 k1 = Padj[X] * Padj[X] + Padj[Z] * Padj[Z] + Py2 - R2 - r2; in Intersect_Ovus_Spheres()
[all …]
/dports/graphics/povray38/povunix-v3.8.0-beta.2-src/source/core/shape/
H A Dovus.cpp96 Vector3d Padj; in Intersect_Ovus_Spheres() local
109 Padj = -P; in Intersect_Ovus_Spheres()
112 OCSquared = Padj.lengthSqr(); in Intersect_Ovus_Spheres()
114 t_Closest_Approach = dot(Padj, D); in Intersect_Ovus_Spheres()
143 Padj = Second_Center - P; in Intersect_Ovus_Spheres()
145 OCSquared = Padj.lengthSqr(); in Intersect_Ovus_Spheres()
177 Padj = P - Second_Center; in Intersect_Ovus_Spheres()
182 Py2 = Padj[Y] * Padj[Y]; in Intersect_Ovus_Spheres()
184 PDy2 = Padj[Y] * D[Y]; in Intersect_Ovus_Spheres()
186 k1 = Padj[X] * Padj[X] + Padj[Z] * Padj[Z] + Py2 - R2 - r2; in Intersect_Ovus_Spheres()
[all …]
H A Dlemon.cpp165 Vector3d Padj, Second_Center,Ipoint, INormal; in Intersect() local
172 Padj = P - Second_Center; in Intersect()
175 Pz2 = Padj[Z] * Padj[Z]; in Intersect()
177 PDz2 = Padj[Z] * D[Z]; in Intersect()
179 k1 = Padj[X] * Padj[X] + Padj[Y] * Padj[Y] + Pz2 - R2 - r2; in Intersect()
180 k2 = Padj[X] * D[X] + Padj[Y] * D[Y] + PDz2; in Intersect()
/dports/math/saga/saga-8.1.3/saga-gis/src/tools/climate/climate_tools/
H A Dair_pressure.cpp125 double Padj = -1.; in On_Execute() local
137 Padj = _P * pow(1. - (_L * (pDEM->asDouble(x, y) - _Z) / (273.15 + _T)), 5.255); in On_Execute()
141 if( Padj < 0. ) in On_Execute()
147 pPadj->Set_Value(x, y, Padj); in On_Execute()