Skip to content

Commit

Permalink
local anchor b error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
parabola47 committed Dec 10, 2017
1 parent 148bafd commit 19a9c04
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 19a9c04

Please sign in to comment.