Search found 10 matches

by 8Observer8
Sat Feb 20, 2021 11:30 pm
Forum: PyBullet Support and Feedback
Topic: How to run the "Hello World" PyBullet example
Replies: 5
Views: 7057

Re: How to run the "Hello World" PyBullet example

I tried to use PyBullet but it is very complicated and I cannot understand haw to use it with OpenGL. The Panda3D Bullet wrapper is only one way that I found. And there is a very great manual: https://docs.panda3d.org/1.10/python/programming/physics/bullet/index I hope I will not have unresolved pro...
by 8Observer8
Sat Feb 20, 2021 6:17 pm
Forum: PyBullet Support and Feedback
Topic: How to run the "Hello World" PyBullet example
Replies: 5
Views: 7057

Re: How to run the "Hello World" PyBullet example

I found a solution. It is possible to use Python wrapper of Panda3D with my custom render in OpenGL. To install Panda3D you need to write: pip install Panda3D main.py from panda3d.bullet import BulletWorld from panda3d.core import TransformState, Vec3, Quat, Point3 from panda3d.bullet import BulletB...
by 8Observer8
Thu Jan 28, 2021 2:20 pm
Forum: PyBullet Support and Feedback
Topic: How to run the "Hello World" PyBullet example
Replies: 5
Views: 7057

Re: How to run the "Hello World" PyBullet example

Please, write that it is impossible.
by 8Observer8
Thu Jan 28, 2021 4:03 am
Forum: PyBullet Support and Feedback
Topic: How to run the "Hello World" PyBullet example
Replies: 5
Views: 7057

Re: How to run the "Hello World" PyBullet example

I use Bullet from C++. Could I use C++ Bullet library from Python without PyBullet? I really do not understand how to rewrite C++ code with OpenGL to PyBullet and OpenGL.
by 8Observer8
Thu Jan 28, 2021 3:40 am
Forum: PyBullet Support and Feedback
Topic: How to run the "Hello World" PyBullet example
Replies: 5
Views: 7057

Re: How to run the "Hello World" PyBullet example

What version of PyBullet I must install to run the example above?
by 8Observer8
Fri Jan 15, 2021 6:38 pm
Forum: PyBullet Support and Feedback
Topic: How to run the "Hello World" PyBullet example
Replies: 5
Views: 7057

How to run the "Hello World" PyBullet example

I try to run the first official example: https://github.com/dgym/pybullet/blob/master/demos/helloworld.py I installed PyBullet like this: pip install pybullet When I try to run the example I get this error message: Traceback (most recent call last): File "main.py", line 1, in <module> from...
by 8Observer8
Sat Jun 27, 2020 1:06 pm
Forum: General Bullet Physics Support and Feedback
Topic: [Solved] Setup Bullet on QtCreator and MinGW
Replies: 1
Views: 1999

Re: Setup Bullet on QtCreator and MinGW

It is very strange. I just to switch the order libs and it works now:

Code: Select all

LIBS += -lBulletDynamics -lBulletCollision -lLinearMath
Instead of:

Code: Select all

LIBS += -lBulletCollision -lBulletDynamics -lLinearMath
by 8Observer8
Sat Jun 27, 2020 12:34 pm
Forum: General Bullet Physics Support and Feedback
Topic: [Solved] Setup Bullet on QtCreator and MinGW
Replies: 1
Views: 1999

[Solved] Setup Bullet on QtCreator and MinGW

Hello I compiled Bullet using CMake and MinGW. I have these libs: libBulletCollision.a libBulletDynamics.a libLinearMath.a I created an empty C++ project in Qt Creator: QtCreatorAndBullet.pro INCLUDEPATH += "E:\Libs\Bullet3-2.89\include" LIBS += -L"E:\Libs\Bullet3-2.89\lib" LIBS ...
by 8Observer8
Sat Sep 20, 2014 8:13 am
Forum: General Bullet Physics Support and Feedback
Topic: "Hello, World" Example in Bullet
Replies: 1
Views: 2501

Re: "Hello, World" Example in Bullet

It was not the "include errors". It was the "undefined errors". I solved this: LIBS += "/usr/local/lib/libBulletCollision.so" LIBS += "/usr/local/lib/libBulletCollision.so.2.82" LIBS += "/usr/local/lib/libBulletDinamics.so" LIBS += "/usr/local/l...
by 8Observer8
Sat Sep 20, 2014 6:35 am
Forum: General Bullet Physics Support and Feedback
Topic: "Hello, World" Example in Bullet
Replies: 1
Views: 2501

"Hello, World" Example in Bullet

Hello! I'm new here. Sorry for my English in advance. I'm from Russia. I want to run this example: http://bulletphysics.org/mediawiki-1.5.8/index.php/Hello_World I've installed Bullet on Mint Linux. But I don't know how to include all necessary files to the project. I've included this (it's Qt): INC...