1/*
2 * Copyright (C) 2013 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 */
16
17package com.android.gallery3d.filtershow.filters;
18
19import android.graphics.RectF;
20
21public class RedEyeCandidate implements FilterPoint {
22    RectF mRect = new RectF();
23    RectF mBounds = new RectF();
24
25    public RedEyeCandidate(RedEyeCandidate candidate) {
26        mRect.set(candidate.mRect);
27        mBounds.set(candidate.mBounds);
28    }
29
30    public RedEyeCandidate(RectF rect, RectF bounds) {
31        mRect.set(rect);
32        mBounds.set(bounds);
33    }
34
35    public boolean equals(RedEyeCandidate candidate) {
36        if (candidate.mRect.equals(mRect)
37                && candidate.mBounds.equals(mBounds)) {
38            return true;
39        }
40        return false;
41    }
42
43    public boolean intersect(RectF rect) {
44        return mRect.intersect(rect);
45    }
46
47    public RectF getRect() {
48        return mRect;
49    }
50}
51