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