Search found 350 matches

by benelot
Tue May 22, 2018 12:50 pm
Forum: PyBullet Support and Feedback
Topic: Training a Humanoid with the OpenAI baselines algorithms?
Replies: 1
Views: 9825

Re: Training a Humanoid with the OpenAI baselines algorithms?

Hi, You should try to train the HumanoidBulletEnv-v0. This is the one that constitutes a proper gym env whereas the other is deprecated now. I will soon make a pull request on how to easily train all envs with tensorforce. So I will check if I can easily give an example on how to train it with basel...
by benelot
Sat Jun 24, 2017 2:07 pm
Forum: General Bullet Physics Support and Feedback
Topic: How to reset simulation
Replies: 5
Views: 16386

Re: How to reset simulation

Could you post that code, benelot? I think it would be very useful! Ok, I just looked into my code and tried to get a quick overview of how it is done: First reset the multibody base position: if (mMultiBody) { mMultiBody->setBasePos(position); } Then for each MultiBodyLinkCollider, you do: btTrans...
by benelot
Wed Apr 19, 2017 8:58 pm
Forum: General Bullet Physics Support and Feedback
Topic: Forum not using SSL
Replies: 1
Views: 8678

Re: Forum not using SSL

Hi! The forum has not been updated for a long time and is utterly outdated. This is mainly due a long due php update which can not be performed on the server for now (do not ask me for the details, that is all I remember the maintainer saying). Since the wiki is going to be moved to github, I do not...
by benelot
Sat Apr 15, 2017 6:53 pm
Forum: General Bullet Physics Support and Feedback
Topic: CPU multithreading is working!
Replies: 145
Views: 1282964

Re: CPU multithreading is working!

Check out the multithreaded demo in the example browser:
You should see easily what is necessary to set it up:
https://github.com/bulletphysics/bullet ... readedDemo
by benelot
Wed Apr 05, 2017 6:19 pm
Forum: General Bullet Physics Support and Feedback
Topic: btConeTwistConstraint for single body
Replies: 1
Views: 8924

Re: btConeTwistConstraint for single body

No, you do not need a second rigid body, you can attach the constraint to the world frame. Look at the constraints demo in the bullet example browser. There it should show exactly what you want to do.
by benelot
Sun Mar 26, 2017 12:08 pm
Forum: General Bullet Physics Support and Feedback
Topic: Set color of individual Rigid Bodies in ExampleBrowser
Replies: 1
Views: 9276

Re: Set Color of Individual Rigid Bodies in ExampleBrowser

You can not set the color of the individual objects in the example browser. This is not part of the API. If you need this, you have to move out of the example browser. The example browser only shows what you can do with the physics engine. It has minimal graphics to make things visual.
by benelot
Thu Mar 02, 2017 9:34 pm
Forum: General Bullet Physics Support and Feedback
Topic: How to make "graphical" bullet
Replies: 1
Views: 8653

Re: How to make "graphical" bullet

Hello, Bullet does not know anything about visualizing, so therefore you need a graphics engine to do this for you. Just choose one that you find most appropriate for your application and learn how it is used. Nice engines at hand are Ogre3D, Irrlicht or Panda3D. Just check what matches your ideas m...
by benelot
Tue Feb 21, 2017 10:12 pm
Forum: General Bullet Physics Support and Feedback
Topic: Making a faster rayTest?
Replies: 18
Views: 57508

Re: Making a faster rayTest?

Maybe somebody could contribute the faster version of ClosestRayResultCallback which does not calculate all other ray results?
by benelot
Tue Feb 21, 2017 10:05 pm
Forum: General Bullet Physics Support and Feedback
Topic: Just Getting Started, Would Like Advice on Tools
Replies: 3
Views: 11192

Re: Just Getting Started, Would Like Advice on Tools

Ok, yeah with your custom c it should be doable. Just can make your c tunable and see how far you can go. I heard that Irrlicht is also pretty nice with Bullet. BulletSharp might be ok with Unitt, but it is a port of Bullet and I have no idea how well supported this is whereas Bullet here is well su...
by benelot
Tue Feb 21, 2017 9:59 pm
Forum: General Bullet Physics Support and Feedback
Topic: [SOLVED] Objects existing in 2 worlds at same time?
Replies: 12
Views: 38851

Re: [SOLVED] Objects existing in 2 worlds at same time?

Your portals look great btw! At some point you maybe can showcase it in the other bullet subforum, which is made for this. Do you have a video of your first person character passing through the portals?
by benelot
Sun Feb 19, 2017 3:04 pm
Forum: General Bullet Physics Support and Feedback
Topic: OpenGL DebugDraw example?
Replies: 9
Views: 26710

Re: OpenGL DebugDraw example?

If anybody of you has a complete OpenGL implementation of the BulletDebugDrawer, just post it here and we can add it to the wiki for future reference.
by benelot
Sun Feb 19, 2017 2:58 pm
Forum: General Bullet Physics Support and Feedback
Topic: [SOLVED] Objects existing in 2 worlds at same time?
Replies: 12
Views: 38851

Re: [SOLVED] Objects existing in 2 worlds at same time?

What should your world changer do? I think all you need is removing from one world and adding to another world?
by benelot
Sun Feb 19, 2017 2:52 pm
Forum: General Bullet Physics Support and Feedback
Topic: Serialization of Softbodies
Replies: 1
Views: 9701

Re: Serialization of Softbodies

Hi,

The serialization demo is in the old_demos branch here:
https://github.com/bulletphysics/bullet ... ializeDemo

Maybe this helps you. If you are interested to port this into the Example Browser, let me know!
by benelot
Sun Feb 19, 2017 2:47 pm
Forum: General Bullet Physics Support and Feedback
Topic: [SOLVED] [pybullet] DIRECT and GUI mode issue
Replies: 4
Views: 23492

Re: [pybullet] DIRECT and GUI mode issue

Can not confirm this issue. I am using pybullet since day one and I usually made the mistakes by compiling a messed up version (not up-to-date etc.), pybullet was always working fine.
by benelot
Sun Feb 19, 2017 12:36 pm
Forum: General Bullet Physics Support and Feedback
Topic: Making a faster rayTest?
Replies: 18
Views: 57508

Re: Making a faster rayTest?

If you log a bug, can you build a simple example browser example (based on BasicExample or the raytest one) and maybe add some timings with btClock to it? By that you speed up the debugging as it can then be used as a unit test for debugging. Also it shows for everyone that the bug actually is there...