-
Notifications
You must be signed in to change notification settings - Fork 0
feat: vehicle simulation #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great! Just had one small comment.
import 'package:equatable/equatable.dart'; | ||
|
||
/// Gravity constant in ft/s^2. | ||
const kGravityFtS2 = 32.174; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: If we want to stay consistent with Effective Dart, avoid prefix letters.
https://dart.dev/effective-dart/style#dont-use-prefix-letters
const kGravityFtS2 = 32.174; | |
const gravityFtS2 = 32.174; |
Description
Updates the project to use a simplified vehicle simulation model.
2024-08-13.16.09.04.mp4
Type of Change