Search found 4 matches

by DanielSJohnson
Thu Oct 12, 2023 9:12 am
Forum: General Bullet Physics Support and Feedback
Topic: URDF importing correctly on one machine, incorrectly on another. Same code.
Replies: 1
Views: 21798

Re: URDF importing correctly on one machine, incorrectly on another. Same code.

Ok so, after a lot of tinkering I have now fixed this problem on my end. Posting here in case anyone else experiences this. Basically, I was having strange behaviours on machine B with a number of bullet functions. In this example the problems were caused by sim->getPhysicsEngineParameters(args);, b...
by DanielSJohnson
Tue Oct 10, 2023 10:04 am
Forum: General Bullet Physics Support and Feedback
Topic: URDF importing correctly on one machine, incorrectly on another. Same code.
Replies: 1
Views: 21798

URDF importing correctly on one machine, incorrectly on another. Same code.

Hi everyone, I'm having a strange bug where my code works fine on one machine (Machine A), but on another (Machine B) Bullet fails to load the URDF file correctly. However, when the URDF file is loaded incorrectly it doesn't return a negative ID or throw any errors, it just responds to subsequent ca...
by DanielSJohnson
Mon Apr 24, 2023 1:57 pm
Forum: General Bullet Physics Support and Feedback
Topic: How to load a robot from URDF in the C++ interface?
Replies: 1
Views: 55004

How to load a robot from URDF in the C++ interface?

HI all, I know this is a basic question so thank you for your patience with me. I have a piece of python code using pyBullet for a robotics application. I am now looking to convert that code into C++ and switch out pyBullet for the C++ bullet3 interface. Im afraid in doing this i've fallen at the fi...
by DanielSJohnson
Wed Jan 18, 2023 2:51 pm
Forum: PyBullet Support and Feedback
Topic: Segfault in p.calculateJacobian()
Replies: 0
Views: 170533

Segfault in p.calculateJacobian()

Hi everyone, I'm having issues where my calls to p.calculateJacobian() result in a segmentation fault. The code to recreate this is: import pybullet as p import numpy as np phyID=p.connect(p.DIRECT) robot_path='/basics/models/robot.urdf' robotId = p.loadURDF(robot_path, flags=p.URDF_USE_SELF_COLLISI...