atan2 688 Source/core/css/CSSGradientValue.cpp float angle = 90 - rad2deg(atan2(rise, run)); atan2 105 Source/core/rendering/shapes/PolygonShape.cpp float startAngle = atan2(startArcVertex.y() - arcCenter.y(), startArcVertex.x() - arcCenter.x()); atan2 106 Source/core/rendering/shapes/PolygonShape.cpp float endAngle = atan2(endArcVertex.y() - arcCenter.y(), endArcVertex.x() - arcCenter.x()); atan2 433 Source/core/rendering/svg/SVGTextQuery.cpp data->rotation = narrowPrecisionToFloat(rad2deg(atan2(fragmentTransform.b(), fragmentTransform.a()))); atan2 583 Source/platform/audio/Biquad.cpp phaseResponse[k] = static_cast<float>(atan2(imag(response), real(response))); atan2 298 Source/platform/audio/FFTFrame.cpp double phase = atan2(realP[i], imagP[i]); atan2 185 Source/platform/transforms/AffineTransform.cpp return rotateRadians(atan2(y, x)); atan2 379 Source/platform/transforms/AffineTransform.cpp double angle = atan2(m.b(), m.a()); atan2 534 Source/platform/transforms/TransformationMatrix.cpp return rotate(rad2deg(atan2(y, x))); atan2 160 Source/wtf/MathExtras.h result = ::atan2(x, y); atan2 186 Source/wtf/MathExtrasTest.cpp EXPECT_EQ(atan2(posInf, posInf), M_PI_4); atan2 187 Source/wtf/MathExtrasTest.cpp EXPECT_EQ(atan2(posInf, negInf), 3.0 * M_PI_4); atan2 188 Source/wtf/MathExtrasTest.cpp EXPECT_EQ(atan2(negInf, posInf), -M_PI_4); atan2 189 Source/wtf/MathExtrasTest.cpp EXPECT_EQ(atan2(negInf, negInf), -3.0 * M_PI_4);