Fixed issues with compilation.
[IRC.git] / Robust / src / Benchmarks / Scheduling / GC / NON_BAMBOO / RayTracer / View.java
1 package RayTracer;
2
3 /**************************************************************************
4  *                                                                         *
5  *             Java Grande Forum Benchmark Suite - Version 2.0             *
6  *                                                                         *
7  *                            produced by                                  *
8  *                                                                         *
9  *                  Java Grande Benchmarking Project                       *
10  *                                                                         *
11  *                                at                                       *
12  *                                                                         *
13  *                Edinburgh Parallel Computing Centre                      *
14  *                                                                         *
15  *                email: epcc-javagrande@epcc.ed.ac.uk                     *
16  *                                                                         *
17  *                 Original version of this code by                        *
18  *            Florian Doyon (Florian.Doyon@sophia.inria.fr)                *
19  *              and  Wilfried Klauser (wklauser@acm.org)                   *
20  *                                                                         *
21  *      This version copyright (c) The University of Edinburgh, 1999.      *
22  *                         All rights reserved.                            *
23  *                                                                         *
24  **************************************************************************/
25
26
27
28 public class View
29 //implements java.io.Serializable
30 {
31   /*    public  Vec     from;
32         public  Vec         at;
33         public  Vec         up;
34         public  float   dist;
35         public  float   angle;
36         public  float   aspect;*/
37   public final Vec       from;
38   public final Vec          at;
39   public final Vec          up;
40   public final float    dist;
41   public final float    angle;
42   public final float    aspect;
43
44   public View (Vec from, Vec at, Vec up, float dist, float angle, float aspect)
45   {
46     this.from = from;
47     this.at = at;
48     this.up = up;
49     this.dist = dist;
50     this.angle = angle;
51     this.aspect = aspect;                   
52   }
53 }
54
55
56