Home
last modified time | relevance | path

Searched refs:theta2 (Results 1 – 5 of 5) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DHighamHall54StepInterpolator.java76 final double theta2 = theta * theta; in computeInterpolatedStateAndDerivatives() local
79 …final double b2 = h * (-27.0/32.0 + theta2 * (459.0/32.0 + theta * (-243.0/8.0 + theta * 135.0/8.0… in computeInterpolatedStateAndDerivatives()
80 final double b3 = h * (4.0/3.0 + theta2 * (-22.0 + theta * (152.0/3.0 + theta * -30.0))); in computeInterpolatedStateAndDerivatives()
81 …final double b4 = h * (-125.0/96.0 + theta2 * (375.0/32.0 + theta * (-625.0/24.0 + theta * 125.0/8… in computeInterpolatedStateAndDerivatives()
82 final double b5 = h * (-5.0/48.0 + theta2 * (-5.0/16.0 + theta * 5.0/12.0)); in computeInterpolatedStateAndDerivatives()
DDormandPrince853StepInterpolator.java362 final double theta2 = theta * theta; in computeInterpolatedStateAndDerivatives() local
366 final double dot4 = theta2 * (3 + theta * (5 * theta - 8)); in computeInterpolatedStateAndDerivatives()
367 final double dot5 = theta2 * (3 + theta * (-12 + theta * (15 - 6 * theta))); in computeInterpolatedStateAndDerivatives()
368 final double dot6 = theta2 * theta * (4 + theta * (-15 + theta * (18 - 7 * theta))); in computeInterpolatedStateAndDerivatives()
/external/freetype/src/base/
Dftstroke.c204 FT_Angle theta1, theta2; in ft_cubic_is_small_enough() local
286 theta2 = ft_pos_abs( FT_Angle_Diff( *angle_mid, *angle_out ) ); in ft_cubic_is_small_enough()
289 theta2 < FT_SMALL_CUBIC_THRESHOLD ); in ft_cubic_is_small_enough()
1665 FT_Angle theta1, phi1, theta2, phi2, rotate, alpha0 = 0; in FT_Stroker_CubicTo() local
1672 theta2 = FT_Angle_Diff( angle_mid, angle_out ) / 2; in FT_Stroker_CubicTo()
1676 length2 = FT_DivFix( stroker->radius, FT_Cos( theta2 ) ); in FT_Stroker_CubicTo()
/external/pdfium/third_party/freetype/src/base/
Dftstroke.c204 FT_Angle theta1, theta2; in ft_cubic_is_small_enough() local
286 theta2 = ft_pos_abs( FT_Angle_Diff( *angle_mid, *angle_out ) ); in ft_cubic_is_small_enough()
289 theta2 < FT_SMALL_CUBIC_THRESHOLD ); in ft_cubic_is_small_enough()
1664 FT_Angle theta1, phi1, theta2, phi2, rotate, alpha0 = 0; in FT_Stroker_CubicTo() local
1671 theta2 = FT_Angle_Diff( angle_mid, angle_out ) / 2; in FT_Stroker_CubicTo()
1675 length2 = FT_DivFix( stroker->radius, FT_Cos( theta2 ) ); in FT_Stroker_CubicTo()
/external/skia/src/core/
DSkPath.cpp1399 SkScalar theta2 = SkScalarATan2(unitPts[1].fY, unitPts[1].fX); in arcTo() local
1400 SkScalar thetaArc = theta2 - theta1; in arcTo()