erwincoumans
7e86a579e9
Merge pull request #1946 from RanTig/transform-changed-notification-active
...
Uses btCollisionBody::isActive instead of btMultiBody::isAwake to determine whether to send transform changed notifications.
2018-10-22 07:36:13 -07:00
Tigran Gasparian
6512a67422
Uses btCollisionBody::isActive instead of btMultiBody::isAwake to
...
determine whether to send transform changed notifications.
2018-10-22 14:06:58 +02:00
erwincoumans
c291fe5584
PyBullet/BulletRobotics: increase max #degree of freedom from 128 to 256.
2018-10-21 20:05:29 -07:00
erwincoumans
04101565bc
Merge pull request #1944 from erwincoumans/master
...
revert backward compabitility in API
2018-10-20 20:45:48 -07:00
Erwin Coumans
2d224cf319
revert backward compabitility in API
2018-10-20 19:44:39 -07:00
erwincoumans
df0889a450
Merge pull request #1943 from erwincoumans/master
...
fix PyBullet.changeVisualShape to allow clearing a texture (use -1 for textureUniqueId)
2018-10-20 17:45:20 -07:00
erwincoumans
01a8a36933
fix example
2018-10-20 16:13:48 -07:00
erwincoumans
ed49edc1af
PyBullet change API (since it was broken): pybullet_changeVisualShape with textureUniqueId ==-1 will clear the texture
...
b3InitUpdateVisualShape doesn't take textureUniqueId by default. new API b3UpdateVisualShapeTexture to change texture (-1 will clear texture)
PyBullet/BulletRobotics: allow to reset the textureUniqueId to -1, to clear a texture
PyBullet/BulletRobotics: save all texture handles
2018-10-20 15:56:56 -07:00
Erwin Coumans
9a9386b6a7
allow empty filename in CNS fileIO
2018-10-20 14:16:31 -07:00
erwincoumans
3d01a8c098
Merge pull request #1942 from erwincoumans/master
...
add missing file in MANIFEST.in, fix potential memory leak in InMemoryFileIO, bump up PyBullet version
2018-10-20 12:25:50 -07:00
Erwin Coumans
dc2d54df2c
remove 32bit build ARCH from xcode4 generated files (premake4)
...
optimization in btMultiBody::fillConstraintJacobianMultiDof:
only compute links between current link and root
2018-10-20 10:44:43 -07:00
erwincoumans
63784dab5f
Update NN3DWalkersTimeWarpBase.h
...
Fix issue #1940 , see https://github.com/bulletphysics/bullet3/issues/1940
2018-10-17 20:08:06 -07:00
Erwin Coumans
eb490351ec
bump up PyBullet version to 2.3.2
2018-10-16 19:04:49 -07:00
Erwin Coumans
d3a2f82740
Merge branch 'master' of https://github.com/erwincoumans/bullet3
2018-10-16 19:04:12 -07:00
Erwin Coumans
e776408c19
add missing file to MANIFEST.in, bump up PyBullet version
2018-10-16 19:03:24 -07:00
erwincoumans
399ff55153
fix typo in previous commit
2018-10-16 19:02:12 -07:00
erwincoumans
8825b39f6c
fix potential memory leak in previous commit related to InMemoryFileIO class.
2018-10-16 18:31:17 -07:00
Filip Gawin
4aab16d943
Remove unneeded keyword register
...
Why is it unneeded?
C++11 has deprecated it,
c++17 removed.
So, how about older (c++98)?
According to Herb Sutter, it is as meaningful
as whitespace.
http://www.drdobbs.com/keywords-that-arent-or-comments-by-anoth/
184403859
2018-10-16 21:28:42 +02:00
erwincoumans
79f6cc901e
Merge pull request #1935 from erwincoumans/master
...
fix fileIO issue with \r\n in lines
2018-10-14 16:48:22 -07:00
erwincoumans
b0a3b1b962
add missing header <string.h>
2018-10-14 15:12:53 -07:00
erwincoumans
b5e475aec3
enable planar reflection in MinitaurGymEnv
...
enable follow cam in other Gym locomotion environments
add testing assets for multi-material obj files -> sdf conversion.
Also use ER_NO_SEGMENTATION_MASK flag for TinyRenderer/EGL plugin renderer
2018-10-14 15:10:19 -07:00
erwincoumans
c1e20c448f
Implement InMemoryFile for memory caching for fileIO plugin.
...
Support SDF loading through fileIO plugin.
Replace strcspn by C code (not crossplatform)
Add flag for loadURDF to use color from MTL file (instead from URDF link material)
pybullet.URDF_USE_MATERIAL_COLORS_FROM_MTL and pybullet.URDF_USE_MATERIAL_TRANSPARANCY_FROM_MTL
2018-10-14 12:54:34 -07:00
erwincoumans
3309ce8f6a
strip \r \n from line
2018-10-13 16:23:58 -07:00
Erwin Coumans
fd3d292fcf
tinyRenderer, remove both \r and \n, not just \n
2018-10-13 11:46:46 -07:00
erwincoumans
11ef1bf0cd
Merge pull request #1929 from erwincoumans/master
...
allow to provide rayCastBatch in local 'from'/'to' with a parent/link…
2018-10-11 18:14:20 -07:00
Erwin Coumans
c441a9469c
enable fileIOPlugin and loading from zipfile in PyBullet,
...
bump up to version 2.3.0
2018-10-11 17:44:54 -07:00
erwincoumans
ad10da57c5
more initial work on fileIOPlugin
2018-10-11 17:00:17 -07:00
erwincoumans
a24c1436af
state 2 of FileIO plugin: adding/removing FileIO types, search through all registered FileIO types.
...
(not enabled by default yet)
Example:
fileIO = p.loadPlugin("fileIOPlugin")
print("fileIO=",fileIO)
p.executePluginCommand(fileIO,"e:/develop/bullet3/data/plane.zip", [p.AddFileIOAction,p.ZipFileIO])
p.executePluginCommand(fileIO,"e:/develop/bullet3/data/test2.zip", [p.AddFileIOAction,p.ZipFileIO])
planeId = p.loadURDF("plane.urdf")
duckId = p.loadURDF("duck_vhacd.urdf",[0,0,1])
2018-10-11 14:39:31 -07:00
erwincoumans
f792a5951a
move zipfFileIO into own header
...
route loadTextureFile from fileIO plugin
fix B3_ENABLE_FILEIO_PLUGIN logic
2018-10-11 10:58:14 -07:00
Erwin Coumans
3861266a6d
Merge remote-tracking branch 'bp/master'
2018-10-10 23:41:55 -07:00
erwincoumans
bb305c6ebc
allow to provide rayCastBatch in local 'from'/'to' with a parent/link index, b3RaycastBatchSetParentObject
...
If parentObjectUniqueId provided, convert local from/to into world space coordinates
AddUserDebugLins: don't block when replacing an item
Fix examples/pybullet/examples/inverse_kinematics.py
2018-10-10 23:31:50 -07:00
erwincoumans
d6b50d3bcc
Merge pull request #1927 from erwincoumans/master
...
backward compatibility fix
2018-10-09 21:45:48 -07:00
Erwin Coumans
32b5c88d4b
close the fileIO for urdf loading
2018-10-09 20:45:17 -07:00
Erwin Coumans
5f954e2496
backward compatibility fix
2018-10-09 16:25:32 -07:00
erwincoumans
03461a0d1f
Merge pull request #1922 from erwincoumans/master
...
First pass of load files through an interface (to allow loading from …
2018-10-09 11:14:40 -07:00
Erwin Coumans
74fca2418b
fix egl plugin build, with fileIO changes
2018-10-09 08:00:31 -07:00
Erwin Coumans
295732149f
add missing stdio.h
2018-10-09 07:01:02 -07:00
erwincoumans
dba239fe8d
First pass of load files through an interface (to allow loading from memory, zip file etc). So instead of posix fopen/fread, using CommonFileIOInterface.
...
A fileIO plugin can override custom file IO operations. As a small test, load files from a zipfile in memory.
Default fileIO implementation is in examples/Utils/b3BulletDefaultFileIO.h
Affects URDF, SDF, MJCF, Wavefront OBJ, STL, DAE, images.
2018-10-08 21:27:08 -07:00
erwincoumans
a1543714f1
Merge pull request #1919 from erwincoumans/master
...
btMultiBody: fix indexing issue causing wrong friction to be reported, remove obsolete BT_PYBULLET_GRPC and PYBULLET_EGL
2018-10-06 19:02:09 -07:00
erwincoumans
332cbfa609
fix typo in previous commit
2018-10-06 18:37:51 -07:00
erwincoumans
c2486bb1a6
add contactFriction.py example
2018-10-06 15:27:56 -07:00
erwincoumans
c0e38cd921
Merge pull request #1896 from jviereck/jviereck_add_lateral_contact_info
...
Adding support for lateral friction to getContactPoints()
2018-10-06 15:27:14 -07:00
erwincoumans
71d4a90c98
btMultiBody: fix indexing issue causing wrong friction to be reported (has no effect, since we don't use warmstarting for multibody)
2018-10-06 15:25:22 -07:00
erwincoumans
8765c0a027
Merge remote-tracking branch 'bp/master'
2018-10-06 13:18:22 -07:00
Erwin Coumans
da2ee638ef
remove obsolete BT_PYBULLET_GRPC and PYBULLET_EGL
2018-10-05 21:47:13 -07:00
erwincoumans
cb55094a11
Merge pull request #1918 from erwincoumans/master
...
fix depth image, setRGBA color and projective texture for eglPlugin, also add getCameraImageTest.py to compare various render modes.
2018-10-05 21:36:40 -07:00
Erwin Coumans
f90fbed54e
Merge branch 'master' of https://github.com/erwincoumans/bullet3
2018-10-05 20:01:37 -07:00
bla
83c3094086
Merge remote-tracking branch 'bp/master'
2018-10-05 19:42:26 -07:00
Erwin Coumans
90f002e07d
Merge branch 'master' of https://github.com/erwincoumans/bullet3
2018-10-05 19:41:10 -07:00
Erwin Coumans
8a0d96edce
tweaks in pybullet/examples for Mac OSX
2018-10-05 19:40:52 -07:00