83955ec5f23925a03db6fb1e453515dc4eea971c
[IRC.git] / Robust / src / Benchmarks / SSJava / EyeTracking / FaceAndEyePosition.java
1 /*
2  * Copyright 2009 (c) Florian Frankenberger (darkblue.de)
3  * 
4  * This file is part of LEA.
5  * 
6  * LEA is free software: you can redistribute it and/or modify it under the
7  * terms of the GNU Lesser General Public License as published by the Free
8  * Software Foundation, either version 3 of the License, or (at your option) any
9  * later version.
10  * 
11  * LEA is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13  * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
14  * details.
15  * 
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with LEA. If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * No description given.
22  * 
23  * @author Florian Frankenberger
24  */
25 public class FaceAndEyePosition {
26
27   private Rectangle2D facePosition;
28   private EyePosition eyePosition;
29
30   public FaceAndEyePosition(Rectangle2D facePosition, EyePosition eyePosition) {
31     this.facePosition = facePosition;
32     this.eyePosition = eyePosition;
33   }
34
35   public Rectangle2D getFacePosition() {
36     return this.facePosition;
37   }
38
39   public EyePosition getEyePosition() {
40     return this.eyePosition;
41   }
42
43 }