Skip to content

Commit

Permalink
Merge pull request #1 from parabola47/joint-error
Browse files Browse the repository at this point in the history
rope joint: local anchor b error fixed
  • Loading branch information
kne authored Jan 15, 2018
2 parents 148bafd + 19a9c04 commit b2c60a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pypybox2d/joints/rope.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(self, body_a, body_b, local_anchor_a=(0, 0), local_anchor_b=(0, 0),
Joint.__init__(self, body_a, body_b, collide_connected)

self._local_anchor_a = Vec2(*local_anchor_a)
self._local_anchor_b = Vec2(*local_anchor_a)
self._local_anchor_b = Vec2(*local_anchor_b)
self._state = INACTIVE_LIMIT
self._length = 0.0
self._max_length = max_length
Expand Down

0 comments on commit b2c60a9

Please sign in to comment.