Skip to content

Commit

Permalink
clean: nasty prints
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasfremming committed Nov 11, 2024
1 parent 7b9fef6 commit d3f9c8d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/agent_parts/creature.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ def add_motor(self, limb_a: Limb, limb_b: Limb, anchor_a: tuple[float,float], an
if abs(global_a[0] - global_b[0]) < tolerance and abs(global_a[1] - global_b[1]) < tolerance:
motor = MotorJoint(self.space, limb_a.body, limb_b.body, anchor_a, anchor_b, rate)
self.motors.append(motor)
print("add_motor: true")
return motor

def local_to_global(self, limb: Limb, point: tuple[float, float]) -> tuple[float, float]|None:
Expand Down

0 comments on commit d3f9c8d

Please sign in to comment.