-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Had a discussion with @aurbano this morning. To prepare for our meeting on Sunday, I thought we should start writing some stuff down :)
Data Structures
Sensors
SensorArray: List<Sensor>
Sensor:
{
velocity: int,
position: {
x: int // Only simulating sensors along one line for now
},
distance: float // 0.00 <> 1.00, indicating distance to detected object
// 1 = no object, 0 = collision
}Car State
CarState:
{
throttle: float // -1.00 <> 1.00, where -1 = brake, +1 = full throttle
steering: float // -1.00 <> 1.00, where -1 = full left steering, +1 = full right steering
}Reactions are currently unavailable
Metadata
Metadata
Labels
No labels