summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerwincoumans <erwincoumans@google.com>2020-08-11 08:30:55 -0700
committerGitHub <noreply@github.com>2020-08-11 08:30:55 -0700
commit17d373db55370936d73882e51f686c06579992f5 (patch)
tree8bd61729f24ea075bb4f26d5420d340e62c7027d
parent19dfc6754a2d3d1f62bad692aeff55983d40ea35 (diff)
parent9c62c3f1f1d3fe0d7ed628d6c3b2de2ba42176e9 (diff)
downloadbullet3-17d373db55370936d73882e51f686c06579992f5.tar.gz
Merge pull request #2937 from addy1997/master
prev keyword removed
-rw-r--r--examples/pybullet/examples/constraint.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/pybullet/examples/constraint.py b/examples/pybullet/examples/constraint.py
index 70d4a6fe9..60b883a5c 100644
--- a/examples/pybullet/examples/constraint.py
+++ b/examples/pybullet/examples/constraint.py
@@ -13,7 +13,6 @@ p.setRealTimeSimulation(1)
cid = p.createConstraint(cubeId, -1, -1, -1, p.JOINT_FIXED, [0, 0, 0], [0, 0, 0], [0, 0, 1])
print(cid)
print(p.getConstraintUniqueId(0))
-prev = [0, 0, 1]
a = -math.pi
while 1:
a = a + 0.01