Good morning!
It is someone here who has an idea how to do that?
Thanks
It is someone here who has an idea how to do that?
Thanks
// acceleration1
if (speed < 0.1)
{
this.timeSinceZeroSpeed = System.DateTime.Now;
this.accelerationInProgress = true;
}
else if (speed > 100 && this.accelerationInProgress)
{
this.accelerationTime = System.DateTime.Now - this.timeSinceZeroSpeed;
this.accelerationInProgress = false;
this.accelerationTimeValid = true;
}