From d7e63931d3c7f69d5707a12c3c374a00ac87a1b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B8=A3=E6=B8=A3=E5=92=8C?= <2608761159@qq.com> Date: Tue, 8 Oct 2024 13:21:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=8C=E6=9D=86=E6=A0=87=E5=87=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Exercise3/tricep_dip.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercise3/tricep_dip.py b/Exercise3/tricep_dip.py index da00469..96940c6 100644 --- a/Exercise3/tricep_dip.py +++ b/Exercise3/tricep_dip.py @@ -180,7 +180,7 @@ class Tricep_dip_1(BaseExercise): # self.pre_pos = 2 # self.had_done = True - if elbow_1 <= 97 and shoulder_1_y >= elbow_1_y - 5: + if elbow_1 <= 95 and shoulder_1_y >= elbow_1_y: self.feedback = "上升" if self.state == 1: self.time += 1 @@ -209,7 +209,7 @@ class Tricep_dip_1(BaseExercise): # self.pre_pos = 2 # self.had_done = True - if elbow_2 <= 97 and shoulder_2_y >= elbow_2_y - 5: + if elbow_2 <= 93 and shoulder_2_y >= elbow_2_y: self.feedback = "上升" if self.state == 1: self.time += 1