changes: generated annotated code but it still causes type errors + re-formatting...
[IRC.git] / Robust / src / Benchmarks / SSJava / EyeTrackingInfer / 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
26 public class FaceAndEyePosition {
27
28   private Rectangle2D facePosition;
29
30   private EyePosition eyePosition;
31
32   public FaceAndEyePosition(Rectangle2D facePosition, EyePosition eyePosition) {
33     this.facePosition = facePosition;
34     this.eyePosition = eyePosition;
35   }
36
37   public Rectangle2D getFacePosition() {
38     return this.facePosition;
39   }
40
41   public EyePosition getEyePosition() {
42     return this.eyePosition;
43   }
44
45 }