Definition at line 8 of file Lane.java.
Public Member Functions | |
| Lane (String id, float xfrom, float xto, float yfrom, float yto, float length) | |
Data Fields | |
| String | id |
| float | length |
| float | xfrom |
| float | xto |
| float | yfrom |
| float | yto |
| ns2::Lane::Lane | ( | String | id, | |
| float | xfrom, | |||
| float | xto, | |||
| float | yfrom, | |||
| float | yto, | |||
| float | length | |||
| ) | [inline] |
constructor
| id | unique (in edge) id of lane | |
| xfrom | x-coordinate at which vehicles start on the edge | |
| xto | y-coordinate at which vehicles start on the edge | |
| yfrom | x-coordinate at which vehicles leave the edge | |
| yto | y-coordinate at which vehicles leave the edge | |
| length | length of lane |
Definition at line 25 of file Lane.java.
00025 { 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 }
| String ns2::Lane::id |
1.5.6