Searched defs:Point (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DLocationClustering.java47 private static class Point { class in class:LocationClustering
48 public Point(double lat, double lng) { method in class:LocationClustering.Point
52 public Point() {} method in class:LocationClustering.Point
88 final ArrayList<Point> points = new ArrayList<Point>();
94 points.add(new Point(s.lat, s.lng));
105 Point[] pointsArray = new Point[m];
205 private static int[] kMeans(Point points[], int[] bestK) {
212 Point[] cente
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
H A DPointCloud.java33 private ArrayList<Point> mPointCloud = new ArrayList<Point>();
106 class Point { class in class:PointCloud
111 public Point(float x2, float y2, float r) { method in class:PointCloud.Point
157 mPointCloud.add(new Point(x, y, r));
178 public int getAlphaForPoint(Point point) {
205 ArrayList<Point> points = mPointCloud;
209 Point point = points.get(i);

Completed in 85 milliseconds