Searched refs:ControlPoint (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DControlPoint.java19 public class ControlPoint implements Comparable { class in inherits:Comparable
23 public ControlPoint(float px, float py) { method in class:ControlPoint
28 public ControlPoint(ControlPoint point) { method in class:ControlPoint
33 public boolean sameValues(ControlPoint other) {
50 public ControlPoint copy() {
51 return new ControlPoint(x, y);
56 ControlPoint p = (ControlPoint) another;
H A DSpline.java30 private final Vector<ControlPoint> mPoints;
42 private ControlPoint mCurrentControlPoint = null;
45 mPoints = new Vector<ControlPoint>();
49 mPoints = new Vector<ControlPoint>();
51 ControlPoint p = spline.mPoints.elementAt(i);
52 ControlPoint newPoint = new ControlPoint(p);
99 ControlPoint p = mPoints.elementAt(i);
100 ControlPoint otherPoint = other.mPoints.elementAt(i);
108 private void didMovePoint(ControlPoint poin
[all...]
H A DImageCurves.java57 private ControlPoint mCurrentControlPoint = null;
304 mCurrentControlPoint = new ControlPoint(posX, posY);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
H A DFilterCurvesRepresentation.java8 import com.android.gallery3d.filtershow.imageshow.ControlPoint;
128 ControlPoint p = mSplines[i].getPoint(j);
H A DFilterChanSatRepresentation.java27 import com.android.gallery3d.filtershow.imageshow.ControlPoint;

Completed in 184 milliseconds