Home
last modified time | relevance | path

Searched refs:sinDeg (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/rigsofrods-caelum/ogre-caelum-0.6.3/main/src/
H A DAstronomy.cpp40 LongReal Astronomy::sinDeg (LongReal x) { in sinDeg() function in Caelum::Astronomy
90 y = dist * sinDeg (rasc) * cosDeg (decl); in convertSphericalToRectangular()
91 z = dist * sinDeg (decl); in convertSphericalToRectangular()
110 LongReal y = sinDeg (hourAngle) * cosDeg (decl); in convertEquatorialToHorizontal()
111 LongReal z = sinDeg (decl); in convertEquatorialToHorizontal()
113 LongReal xhor = x * sinDeg (latitude) - z * cosDeg (latitude); in convertEquatorialToHorizontal()
115 LongReal zhor = x * cosDeg (latitude) + z * sinDeg (latitude); in convertEquatorialToHorizontal()
141 LongReal E = M + radToDeg(e * sinDeg (M) * (1 + e * cosDeg (M))); in getHorizontalSunPosition()
145 LongReal yv = sinDeg (E) * sqrt (1 - e * e); in getHorizontalSunPosition()
/dports/graphics/kdiagram/kdiagram-2.8.0/src/KChart/
H A DKChartRelativePosition.cpp194 const qreal sinDeg = sin(rad); in calculatedPoint() local
196 pt.setX( pt.x() + dx * cosDeg + dy * sinDeg ); in calculatedPoint()
197 pt.setY( pt.y() - dx * sinDeg + dy * cosDeg ); in calculatedPoint()
/dports/games/alienblaster/alienblaster/src/
H A Dgeometry.cc60 float sinDeg ( AngDeg x ) { return ( sin( Deg2Rad( x ) ) ); } in sinDeg() function
117 atan2Deg( (sinDeg( angMin) + sinDeg( angMax ) )/2.0, in getBisectorTwoAngles()
212 return ( Vector2D( dMag * cosDeg( ang ), dMag * sinDeg( ang ) ) ); in getVector2DFromPolar()
H A Dgeometry.h91 float sinDeg ( AngDeg x );
/dports/graphics/rigsofrods-caelum/ogre-caelum-0.6.3/main/include/
H A DAstronomy.h62 static LongReal sinDeg (LongReal x);
/dports/www/geneweb/geneweb-13c850a0cc3973daf7ae3e0772a1621f84052041/src/
H A Dcalendar.ml90 value sinDeg pAngle = sin (degVersRad pAngle);
113 l +. (1.91946 -. 0.004789 *. t -. 1.4E-5 *. t2) *. sinDeg m +.
114 (0.020094 -. 1.0E-4 *. t) *. sinDeg (2.0 *. m) +.
115 0.00293 *. sinDeg (3.0 *. m)
117 let ll = ll -. 0.00569 -. 0.00479 *. sinDeg (259.18 -. 1934.142 *. t) in
/dports/astro/kstars/kstars-3.5.6/packaging/android/apk/src/org/kde/kstars/math/
H A DMathUtils.java69 static public final float sinDeg (float degrees) { in sinDeg() method in MathUtils