Skip to content

Latest commit

 

History

History
 
 

Part-17-CubicSplineInterpolation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Robot Mechanics

Python Library for Robot Kinematics, Dynamics, Motion Planning and Control. These tools can be used to design, simulate and test different robotics algorithms.

Prerequisites

The library has been developed on Windows 10 machine and Python 3.8.8. The library can be run on all platforms running Python.

Installation

Without Virtual Environment

cd Robotics-Mechanics
pip install -r requirements.txt

With Virtual Environment

cd Robotics-Mechanics
virtualenv mechanics
./mechanics/Scripts/activate
pip install -r requirements.txt

Examples

  • Working with Transformation Matrices and their Visualization. Code

  • Working with Robot - Initialization, Forward Kinematics, Inverse Kinematics, Jacobian of the Robot and Visualization. Code

Tests

Unit Tests for all the functionalities are provided.

cd tests
python test.py