An open API service indexing awesome lists of open source software.

https://github.com/justagist/pybullet_robot

A generic Python interface class for robot simulations using PyBullet. Also provides an IK interface for multi-end-effector robots that uses bullet physics as a solver.
https://github.com/justagist/pybullet_robot

panda panda-simulator pybullet robot-simulations

Last synced: 4 months ago
JSON representation

A generic Python interface class for robot simulations using PyBullet. Also provides an IK interface for multi-end-effector robots that uses bullet physics as a solver.

Awesome Lists containing this project

README

          

# PyBullet Robot

[![PyPI version](https://badge.fury.io/py/pybullet-robot.svg)](https://badge.fury.io/py/pybullet-robot)

This package provides:
1. A generel Python interface class for robot simulations using [PyBullet](https://www.pybullet.org). Python API class to control and monitor the robot in the simulation.
2. A pybullet inverse kinematics interface that can be used for getting joint position values when end-effector/link targets are provided. Supports multi-end-effector targets and floating-base robots.

## Installation

# From pypi

`pip install pybullet_robot`

# From source

```bash
git clone -b main https://github.com/justagist/pybullet_robot
cd pybullet_robot
pip install .
```

## Usage

(TODO)