Skip to content
Snippets Groups Projects
andersct's avatar
andersct authored
- fix numerical issue for water image view
- fix wrong value for camera center
f65500d1
History

This repository caters to two main goals: to learn about robotics through simulation, and to provide an environment to do that with minimal dependencies. A third is maybe to have simple and modular code.

Dependencies

  • NumPy
  • SciPy
  • matplotlib

Numpy here is generally used for its math routines. Scipy is for advancing the time in some simulations and occasionally for its optimization routines. All visuals are done with matplotlib, so most of the examples in examples/ will need this.

Here is an example of creating an environment named py37control with Anaconda having the dependencies:

conda create -n py37control python=3.7 numpy scipy matplotlib