Skip to content

Instantly share code, notes, and snippets.

@JillevdW
Created July 6, 2018 09:45
Show Gist options
  • Save JillevdW/b7a980af1956b280e6cb75ea32e0338d to your computer and use it in GitHub Desktop.
Save JillevdW/b7a980af1956b280e6cb75ea32e0338d to your computer and use it in GitHub Desktop.
Project
private func project(initialVelocity: CGFloat, decelerationRate: CGFloat) -> CGFloat {
return (initialVelocity / 1000) * decelerationRate / (1 - decelerationRate)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment