SimWall |
1 package simworldobjects; 2 3 /** 4 * Models a simple wall object 5 * 6 * @author Graham Ritchie 7 */ 8 public class SimWall extends BasicSimObject 9 { 10 /** 11 * Sets up this wall 12 * 13 * @param x the wall's x coordinate 14 * @param y the wall's y coordinate 15 * @param z the wall's z coordinate 16 * @param b the wall's bearing 17 * @param length the wall's length 18 * @param width the wall's width 19 */ 20 public SimWall(double x, double y, double z, double b, double length, double width) 21 { 22 // initialise the SimObject 23 super(0.0,length,width,"wall",x,y,z,0.0,b); 24 } 25 } 26
SimWall |