cadop
ace34c4d08
check the process id before disconnecting
2021-04-27 19:33:37 -04:00
jaraujo98
dcf9c8d6a5
Replace xrange with range
...
The xrange function was deprecated in Python 3. Removing it for compatibility.
2021-04-06 11:26:39 -07:00
erwincoumans
21d1b8fc71
Merge pull request #3339 from erwincoumans/master
...
add pybullet_examples, fix pybullet_envs.minitaur.envs_v2, bump up pybullet 3.1.2
2021-04-05 19:53:38 -07:00
Erwin Coumans
5205dafcc2
add __init__.py
2021-04-05 19:51:38 -07:00
Erwin Coumans
29f388a5d8
add selected examples under pybullet_examples
2021-04-05 19:50:46 -07:00
Erwin Coumans
513e3a7db4
add more __init__.py files
2021-04-05 18:07:39 -07:00
Erwin Coumans
674c82db89
bump up pybullet version to 3.1.2
...
add missing __init__.py files
2021-04-05 17:58:25 -07:00
erwincoumans
2c3318f86d
Merge pull request #3331 from erwincoumans/master
...
add performCollisionDetection (stepSimulation also calls this, but do…
2021-04-05 12:54:39 -07:00
erwin coumans
8b8c1af6a4
Cleaned-up/fixed version of this Pull Request #3239 , thanks to Wenlong Lu
2021-04-05 11:40:45 -07:00
erwin coumans
4d34ba7310
add updated Laikago envs_v2, with PMTG and MPC examples.
...
python -m pybullet_envs.minitaur.envs_v2.locomotion_gym_env_test
python -m pybullet_envs.minitaur.envs_v2.examples.laikago_mpc_wrapper_example
python -m pybullet_envs.minitaur.envs_v2.examples.laikago_static_gait_example
python -m pybullet_envs.minitaur.agents.baseline_controller.locomotion_controller_example
PMTG example, not well tuned:
python -m pybullet_envs.minitaur.envs_v2.examples.laikago_pmtg_example
2021-04-05 11:35:19 -07:00
erwin coumans
d1c4c41b9a
add performCollisionDetection (stepSimulation also calls this, but does more, including solving constraints and integration)
2021-03-26 10:31:13 -07:00
erwincoumans
93be7e6440
Merge pull request #3311 from erwincoumans/master
...
allow to compile pybullet using btDiscreteDynamicsWorld (no btMultiBody, no btSoftBody, no btDeformableBody)
2021-03-26 10:29:04 -07:00
erwin coumans
0196edd4d2
update single aabb, during resetJointState/resetBasePositionAndOrientation, to allow raycast/collision queries.
2021-03-26 09:11:59 -07:00
erwin coumans
546212b158
add mug obj
2021-03-22 16:53:17 -07:00
erwin coumans
6f7d458679
add missing line in previous commit
2021-03-16 18:17:23 -07:00
erwincoumans
395e17c7bf
Merge pull request #3238 from yycho0108/add-link-names-to-createmultibody
...
Add linkNames argument to CreateMultibody
2021-03-15 22:48:33 -07:00
erwin coumans
5cf8ee3360
Allow to compile pybullet using btDiscreteDynamicsWorld (no multibodies and no deformables), this allows to create Jacobian and Mass matrix (and A=J*M-1*J_transpose) with MLCP solvers
...
Add examples/pybullet/gym/pybullet_utils/readwriteurdf.py, this allows to read a URDF and write the URDF with more reasonable inertia tensors (based on mass and collision volumes)
2021-03-15 22:44:55 -07:00
erwincoumans
0c7ea68709
Merge pull request #3246 from Danfoa/master
...
Fix Stable-PD Control bug on First Order Taylor approximation of next `q` state
2021-03-07 08:19:37 -08:00
mbennice
296cd85f60
Fix tab/spaces
2021-03-05 09:54:53 -08:00
mbennice
237843b93a
Default user data text to empty string when null.
2021-03-05 09:52:10 -08:00
Erwin Coumans
b619763569
Merge remote-tracking branch 'bp/master'
2021-03-04 09:38:13 -08:00
erwin coumans
3963f077fc
Fix memory leak in EGL / GUI mode, resetSimulation with textures in GUI mode.
...
Fixes Issue #3285
2021-03-04 09:13:22 -08:00
erwincoumans
7b84fabb1e
Merge pull request #3291 from vabr-g/efficient-find
...
Optimize calls to find*() for a single char.
2021-03-02 10:06:54 -08:00
Vaclav Brozek
364e98c92d
Optimize calls to find*() for a single char.
...
The character literal overload is more efficient.
2021-03-02 18:59:31 +01:00
Erwin Coumans
adcaa75777
enable v-hacd in cmake for BulletRobotics and pybullet build (use cmake -DENABLE_VHACD=OFF .. to disable)
...
cmake: enable stable PD plugin (-DDSTATIC_LINK_SPD_PLUGIN)
btMultibody, make some args const in mulMatrix
2021-03-01 14:03:48 -08:00
vabr-g
e4963f73f2
Fix a null dereference in UrdfParser
...
When the parser sees no <inertial> tag inside a <deformable>, it logs an error but does not return false. So in the next step, a null pointer is dereferenced.
This can be tested with loading the following URDF:
```
<?xml version="1.0"?>
<robot name="rhythm_carrot_sticks">
<deformable name="bag">
</deformable>
</robot>
```
2021-03-01 21:21:11 +01:00
Erwin Coumans
97add36b9f
update bullet_client.py to accept options
...
p.connect(p.GUI, options="--background_color_red=1 --background_color_blue=1 --background_color_green=1")
If you use bullet_client.py, you can use:
p = bc.BulletClient(connection_mode=pybullet.GUI,options="--background_color_red=1 --background_color_blue=1 --background_color_green=1")
--mouse_move_multiplier=0.4
--mouse_wheel_multiplier=0.01
--mp4=moviename.mp4
2021-02-25 16:32:39 -08:00
erwincoumans
abea1a8484
Create LICENSE.txt
2021-02-08 08:06:16 -08:00
erwincoumans
af6aa5fb99
Create LICENSE.txt
2021-02-08 08:05:46 -08:00
erwincoumans
c3f137773b
Create LICENSE.txt
2021-02-08 08:05:22 -08:00
erwincoumans
ecbbf24d2a
Create LICENSE.txt
2021-02-08 08:04:10 -08:00
erwincoumans
1257ab5915
Create LICENSE.txt
2021-02-08 08:03:23 -08:00
erwincoumans
b582287943
Create LICENSE.txt
2021-02-08 08:02:52 -08:00
erwincoumans
7a6fb20da8
Create LICENSE.txt
2021-02-08 08:02:02 -08:00
erwincoumans
a061644454
Create LICENSE.txt
2021-02-08 08:01:18 -08:00
erwincoumans
643f9c90be
Create LICENSE.txt
2021-02-08 08:00:22 -08:00
erwincoumans
5d149250ba
Create LICENSE.txt
2021-02-08 07:58:30 -08:00
erwincoumans
062860e455
Create LICENSE.txt
2021-02-08 07:57:53 -08:00
erwincoumans
1fbee5299a
Create LICENSE.txt
2021-02-08 07:57:25 -08:00
erwincoumans
6ad7e8fa6e
Create LICENSE.txt
2021-02-08 07:57:00 -08:00
erwincoumans
3b52be333b
Create LICENSE.txt
2021-02-08 07:56:27 -08:00
erwincoumans
70d7063249
Create LICENSE.txt
2021-02-08 07:55:45 -08:00
daniel.ordonez
f719c27b04
Fix Stable PD bug on First Order Taylor approximation of next q state
2021-01-27 21:59:49 -05:00
erwincoumans
537ccb2200
Merge pull request #3237 from glebm/fix-pthread
...
CMake: Use Threads instead of pthread directly
2021-01-23 10:26:58 -08:00
Gleb Mazovetskiy
d248271e38
CMake: Also link Threads correctly in examples/
2021-01-20 18:20:43 +00:00
yycho0108
6f65a12b3a
no nullptr
2021-01-20 16:45:23 +09:00
yycho0108
c0d9553d65
add link names args to CreateMultibody
2021-01-20 15:53:24 +09:00
erwincoumans
de8f04f819
Update pybullet.c
2021-01-17 23:42:28 -08:00
Erwin Coumans
21bc93a084
disable cone friction in example
2021-01-15 14:42:12 -08:00
Erwin Coumans
10020baa71
fix memory leak in calculateInverseKinematics2, reported here:
...
https://github.com/bulletphysics/bullet3/issues/3228
Thanks jcoholich for the report and repro case!
2021-01-15 14:38:48 -08:00