/
redgpu
/
bullet
Обзор
Документация
Войти
/
redgpu
/
bullet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/SharedMemory/plugins/stablePDPlugin/Shape.h
20 строк
261 B
erwincoumans
Add preliminary PhysX 4.0 backend for PyBullet
23 янв 2019, 08:08
23 янв 2019, 08:08
ae8e839
Код
Авторство
О чём код?
#pragma once #include <string> class cShape { public: enum eShape { eShapeNull, eShapeBox, eShapeCapsule, eShapeSphere, eShapeCylinder, eShapePlane, eShapeMax, }; static bool ParseShape(const std::string& str, cShape::eShape& out_shape); };