From 199eb00768e5f1d0c99f458d6703b525c90b3994 Mon Sep 17 00:00:00 2001 From: TinaryTree <32566921+q526933815@users.noreply.github.com> Date: Tue, 29 Jan 2019 09:58:48 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E5=9B=BE=E5=BD=A2=E7=94=A8=E6=88=B7?= =?UTF-8?q?=E7=95=8C=E9=9D=A2=E5=92=8C=E6=B8=B8=E6=88=8F=E5=BC=80=E5=8F=91?= =?UTF-8?q?.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\222\214\346\270\270\346\210\217\345\274\200\345\217\221.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/Day01-15/Day10/\345\233\276\345\275\242\347\224\250\346\210\267\347\225\214\351\235\242\345\222\214\346\270\270\346\210\217\345\274\200\345\217\221.md" "b/Day01-15/Day10/\345\233\276\345\275\242\347\224\250\346\210\267\347\225\214\351\235\242\345\222\214\346\270\270\346\210\217\345\274\200\345\217\221.md" index 9225cde..a92f535 100644 --- "a/Day01-15/Day10/\345\233\276\345\275\242\347\224\250\346\210\267\347\225\214\351\235\242\345\222\214\346\270\270\346\210\217\345\274\200\345\217\221.md" +++ "b/Day01-15/Day10/\345\233\276\345\275\242\347\224\250\346\210\267\347\225\214\351\235\242\345\222\214\346\270\270\346\210\217\345\274\200\345\217\221.md" @@ -264,7 +264,7 @@ class Ball(object): if distance < self.radius + other.radius \ and self.radius > other.radius: other.alive = False - a self.radius = self.radius + int(other.radius * 0.146) + self.radius = self.radius + int(other.radius * 0.146) def draw(self, screen): """在窗口上绘制球""" -- GitLab