Searched defs:radius (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DImageFilterParametricBorder.java36 public ImageFilterParametricBorder(int color, int size, int radius) { argument
37 setBorder(color, size, radius);
75 public void setBorder(int color, int size, int radius) { argument
78 mBorderCornerRadius = radius;
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DMosaicTypes.h140 double radius; member in struct:__anon4
/packages/apps/DeskClock/src/com/android/deskclock/
H A DCircleTimerView.java39 private float mRadiusOffset; // amount to remove from radius to account for markers on circle
147 float radius = Math.min(xCenter, yCenter) - mRadiusOffset;
150 xCenter = (int) (radius + mRadiusOffset);
159 canvas.drawCircle (xCenter, yCenter, radius, mPaint);
161 drawRedDiamond(canvas, 0f, xCenter, yCenter, radius);
168 mArcRect.top = yCenter - radius;
169 mArcRect.bottom = yCenter + radius;
170 mArcRect.left = xCenter - radius;
171 mArcRect.right = xCenter + radius;
195 if (mMarkerTime != -1 && radius >
212 drawRedDiamond( Canvas canvas, float degrees, int xCenter, int yCenter, float radius) argument
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
H A DPointCloud.java47 private float radius = 50; field in class:PointCloud.WaveManager
51 radius = r;
55 return radius;
70 private float radius = 0.0f; field in class:PointCloud.GlowManager
98 radius = r;
102 return radius;
109 float radius; field in class:PointCloud.Point
114 radius = r;
138 Log.w(TAG, "Must specify an inner radius");
183 if (glowDistance < glowManager.radius) {
[all...]
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DMosaicTypes.h140 double radius; member in struct:__anon11
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DZoomControlWheel.java93 double radius = Math.sqrt(dx * dx + dy * dy);
161 double radius, int color, int width) {
162 mBackgroundRect.set((float) (mCenterX - radius), (float) (mCenterY - radius),
163 (float) (mCenterX + radius), (float) (mCenterY + radius));
160 drawArc(Canvas canvas, int startAngle, int sweepAngle, double radius, int color, int width) argument
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
H A DHoloSpiralRS.java216 private void generateSpiral(ScriptField_VertexColor_s points, float depth, float radius, argument
230 Float3 position = new Float3(radius * (float) Math.cos(radians),
231 radius * (float) Math.sin(radians), (percentage * depth) - halfDepth);
/packages/apps/Camera/src/com/android/camera/ui/
H A DPieRenderer.java553 // get angle and radius from x/y
680 private static void convertCart(int angle, int radius, Point out) { argument
682 out.x = (int) (radius * Math.cos(a) + 0.5);
683 out.y = (int) (radius * Math.sin(a) + 0.5);

Completed in 237 milliseconds