Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.66 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.66 KB

Equations-Of-Motion-Library

Build status Build Status codecov contributions welcome

A collection of methods for solving Displacement, Initial and Final Velocities, Constant Acceleration and Time. This project uses .NET Standard 2.0.

See in Action

Equations Of Motion - Android Application

Getting Started - C#

Using NuGet NuGet

  1. Within your project, install EquationsOfMotion NuGet package (via "Manage Packages for Solution" or running the following in "Packet Manager Console".
Install-Package EquationsOfMotion -Version 1.0.0
  1. Reference the Namespace:
using srbrettle.EquationsOfMotion;
  1. Use the static library methods:
double result = InitialVelocity.InitialVelocityFromVAT(20, 2, 5);

License

This project is licensed under the MIT License - see the LICENSE file for details.