Interface ISteeringHandle
The ISteeringHandle extends the IPassengerHandle by the possibility to move a
vehicle.
Namespace: SOHDomain.Steering.Handles
Assembly: SOHDomain.dll
Syntax
public interface ISteeringHandle : IPassengerHandle
Properties
| Improve this Doc View SourceEnvironment
The main environment on which the steering operates.
Declaration
ISpatialGraphEnvironment Environment { get; }
Property Value
Type | Description |
---|---|
ISpatialGraphEnvironment |
GoalReached
Determines if the goal of the current route has be reached.
Declaration
bool GoalReached { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Route
The current route on which the steering operates.
Declaration
Route Route { get; set; }
Property Value
Type | Description |
---|---|
Route |
Velocity
Gives the current velocity of the vehicle and thus all its passengers.
Declaration
double Velocity { get; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
| Improve this Doc View SourceMove()
Provides the possibility to tick the moving road user.
Declaration
void Move()