OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:azimuthRad
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/skia/gm/
lighting.cpp
75
SkScalar
azimuthRad
= SkDegreesToRadians(SkIntToScalar(225));
77
SkPoint3 distantDirection(SkScalarMul(SkScalarCos(
azimuthRad
), SkScalarCos(elevationRad)),
78
SkScalarMul(SkScalarSin(
azimuthRad
), SkScalarCos(elevationRad)),
/external/chromium_org/third_party/skia/bench/
LightingBench.cpp
39
static SkScalar
azimuthRad
= SkDegreesToRadians(SkIntToScalar(225));
41
static SkPoint3 distantDirection(SkScalarMul(SkScalarCos(
azimuthRad
),
43
SkScalarMul(SkScalarSin(
azimuthRad
),
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FELighting.cpp
443
float
azimuthRad
= deg2rad(distantLightSource->azimuth());
445
SkPoint3 direction(cosf(
azimuthRad
) * cosf(elevationRad),
446
sinf(
azimuthRad
) * cosf(elevationRad),
Completed in 254 milliseconds