1 package SteeringStuff; 2 3 import javax.vecmath.Vector3d; 4 5 /** 6 * This class provides the data of one ray. 7 * @author Marki 8 */ 9 public class SteeringRay { 10 11 public String id; 12 public Vector3d direction; 13 public int length; 14 15 public SteeringRay(String id, Vector3d direction, int length) { 16 this.id = id; 17 this.direction = direction; 18 this.length = length; 19 } 20 }