1 31 package org.objectweb.proactive.examples.c3d.prim; 32 33 import org.objectweb.proactive.examples.c3d.geom.Vec; 34 35 public class Light implements java.io.Serializable { 36 37 public Vec pos; 38 public double brightness; 39 40 41 public Light() { 42 } 43 44 45 public Light(double x, double y, double z, double brightness) { 46 this.pos = new Vec(x, y, z); 47 this.brightness = brightness; 48 } 49 } 50 | Popular Tags |