blob: 73589d37311c1a31dc0d3270f5cf0c4a0e179860 [file] [log] [blame]
nicolasroarda9f280f2012-10-23 11:26:38 -07001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
nicolasroard0d7cdf82012-09-25 14:27:56 -070016
17package com.android.gallery3d.filtershow.ui;
18
John Hofordc7b2c282012-10-02 18:12:03 -070019public class ControlPoint implements Comparable {
nicolasroard3992ae62012-10-15 18:03:37 -070020 public float x;
21 public float y;
22
nicolasroard0d7cdf82012-09-25 14:27:56 -070023 public ControlPoint(float px, float py) {
24 x = px;
25 y = py;
26 }
27
nicolasroard3992ae62012-10-15 18:03:37 -070028 public ControlPoint(ControlPoint point) {
29 x = point.x;
30 y = point.y;
nicolasroard0d7cdf82012-09-25 14:27:56 -070031 }
32
nicolasroard0d7cdf82012-09-25 14:27:56 -070033 public ControlPoint copy() {
34 return new ControlPoint(x, y);
35 }
36
37 @Override
38 public int compareTo(Object another) {
39 ControlPoint p = (ControlPoint) another;
40 if (p.x < x) {
41 return 1;
42 } else if (p.x > x) {
43 return -1;
44 }
45 return 0;
46 }
47}