Lane.java

Go to the documentation of this file.
00001 package ns2;
00002 
00008 public class Lane {
00009     public String id;
00010     public float xfrom;
00011     public float xto;
00012     public float yfrom;
00013     public float yto;
00014     public float length;
00015 
00025     public Lane(String id, float xfrom, float xto, float yfrom, float yto, float length) {
00026         this.id       = id;
00027         this.xfrom    = xfrom;
00028         this.xto      = xto;
00029         this.yfrom    = yfrom;
00030         this.yto      = yto;
00031         this.length   = length;
00032     }
00033 }

Generated on Wed May 5 00:06:30 2010 for Sumo - Simulation of Urban MObility by  doxygen 1.5.6