summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerwincoumans <erwincoumans@google.com>2020-08-13 11:28:07 -0700
committerGitHub <noreply@github.com>2020-08-13 11:28:07 -0700
commit1c818fda32693ac4ada234de3965f7e369e49fc9 (patch)
treebd2999751915ed1e708920dd9ca0ee8ddfac617e
parente52a30de682bd9da8d3697e69e921e6c50b32d16 (diff)
parent82493e9fbb9f2b21101e2b10eb92c9c9d56836a5 (diff)
downloadbullet3-1c818fda32693ac4ada234de3965f7e369e49fc9.tar.gz
Merge pull request #2986 from erwincoumans/master
fix copy/paste bug in pybullet.c related to collisionShapeOrientation…
-rw-r--r--examples/pybullet/pybullet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pybullet/pybullet.c b/examples/pybullet/pybullet.c
index f6794482a..d9c5beac7 100644
--- a/examples/pybullet/pybullet.c
+++ b/examples/pybullet/pybullet.c
@@ -8053,7 +8053,7 @@ static PyObject* pybullet_getClosestPointData(PyObject* self, PyObject* args, Py
&bodyUniqueIdA, &bodyUniqueIdB, &distanceThreshold, &linkIndexA, &linkIndexB,
&collisionShapeA, &collisionShapeB,
&collisionShapePositionAObj, &collisionShapePositionBObj,
- &collisionShapeOrientationA, &collisionShapeOrientationBObj,
+ &collisionShapeOrientationAObj, &collisionShapeOrientationBObj,
&physicsClientId))
return NULL;