I have the following:
- 2d vector for velocity
- 2d start coordinate
- gravity acceleration
I need to know the coordinate of a projectile at a given distance along the trajectory.
For example:
- Velocity = (5m/s,3m/s)
- start coordinate = (10m,10m)
- gravity = 10m/s/s
- distance along trajectory from start = 1m
I'm doing this for a simulation where I need to draw a dotted line along a trajectory of a projectile.