From 4dc18199a25d0f80e698076391a716e4a1df5e29 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 12:48:25 -0500 Subject: [PATCH 01/25] Updated from Brython Server: 1/28/2019 12:48:25 PM --- picture.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/picture.py b/picture.py index 6e2a3e23..47a45be5 100644 --- a/picture.py +++ b/picture.py @@ -27,6 +27,21 @@ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset # add your code here \/ \/ \/ +wah = Color(0xedcc9b, 1.0) +green = Color(0xce27d3, 0.5) +blue = Color(0x0000ff, 1.0) +black = Color(0x000000, 1.0) +thinline = LineStyle(1, black) + +rectangle = RectangleAsset(50, 20, thinline, wah) +square = RectangleAsset(100, 100, thinline, green) +ellipse = EllipseAsset(200, 50, thinline, blue) +triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, green) + +Sprite(rectangle, (200, 60)) +Sprite(square, (210, 50)) +Sprite(ellipse, (290, 400)) +Sprite(triangle, (300, 300)) # add your code here /\ /\ /\ From 87c7bb0875f5480758d7c83a177b65eeffe827f9 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 12:50:52 -0500 Subject: [PATCH 02/25] Updated from Brython Server: 1/28/2019 12:50:52 PM --- picture.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/picture.py b/picture.py index 47a45be5..6ac52db1 100644 --- a/picture.py +++ b/picture.py @@ -27,15 +27,15 @@ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset # add your code here \/ \/ \/ -wah = Color(0xedcc9b, 1.0) +purple = Color(0xedcc9b, 1.0) green = Color(0xce27d3, 0.5) -blue = Color(0x0000ff, 1.0) +white = Color(0xffffff, 1.0) black = Color(0x000000, 1.0) thinline = LineStyle(1, black) -rectangle = RectangleAsset(50, 20, thinline, wah) +rectangle = RectangleAsset(50, 20, thinline, purple) square = RectangleAsset(100, 100, thinline, green) -ellipse = EllipseAsset(200, 50, thinline, blue) +ellipse = EllipseAsset(200, 50, thinline, purple) triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, green) Sprite(rectangle, (200, 60)) From 027b2e037b368f9f9fe475bf01573203d1561867 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 12:53:22 -0500 Subject: [PATCH 03/25] Updated from Brython Server: 1/28/2019 12:53:21 PM --- picture.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/picture.py b/picture.py index 6ac52db1..2867edb7 100644 --- a/picture.py +++ b/picture.py @@ -27,16 +27,16 @@ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset # add your code here \/ \/ \/ -purple = Color(0xedcc9b, 1.0) -green = Color(0xce27d3, 0.5) +wah = Color(0xedcc9b, 1.0) +purple= Color(0xce27d3, 1.0) white = Color(0xffffff, 1.0) black = Color(0x000000, 1.0) thinline = LineStyle(1, black) rectangle = RectangleAsset(50, 20, thinline, purple) -square = RectangleAsset(100, 100, thinline, green) +square = RectangleAsset(100, 100, thinline, purple) ellipse = EllipseAsset(200, 50, thinline, purple) -triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, green) +triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) Sprite(rectangle, (200, 60)) Sprite(square, (210, 50)) From 990595aa6c33e86cc893212c6272ccece8619f1c Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 12:55:59 -0500 Subject: [PATCH 04/25] Updated from Brython Server: 1/28/2019 12:55:58 PM --- picture.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/picture.py b/picture.py index 2867edb7..b45e61e4 100644 --- a/picture.py +++ b/picture.py @@ -34,13 +34,13 @@ thinline = LineStyle(1, black) rectangle = RectangleAsset(50, 20, thinline, purple) -square = RectangleAsset(100, 100, thinline, purple) -ellipse = EllipseAsset(200, 50, thinline, purple) +face = EllipseAsset(100, 100, thinline, purple) +hat = EllipseAsset(100, 70, thinline, purple) triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) Sprite(rectangle, (200, 60)) -Sprite(square, (210, 50)) -Sprite(ellipse, (290, 400)) +Sprite(face, (210, 50)) +Sprite(hat, (290, 100)) Sprite(triangle, (300, 300)) From 03c10bab397a827f30b35826674459144fcc5438 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 12:56:42 -0500 Subject: [PATCH 05/25] Updated from Brython Server: 1/28/2019 12:56:41 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index b45e61e4..8f2a6f17 100644 --- a/picture.py +++ b/picture.py @@ -34,12 +34,12 @@ thinline = LineStyle(1, black) rectangle = RectangleAsset(50, 20, thinline, purple) -face = EllipseAsset(100, 100, thinline, purple) +face = EllipseAsset(100, 100, thinline, wah) hat = EllipseAsset(100, 70, thinline, purple) triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) Sprite(rectangle, (200, 60)) -Sprite(face, (210, 50)) +Sprite(face, (200, 50)) Sprite(hat, (290, 100)) Sprite(triangle, (300, 300)) From 3f2931aff725dce81a6313c73673d2742bd9774e Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 12:58:14 -0500 Subject: [PATCH 06/25] Updated from Brython Server: 1/28/2019 12:58:14 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 8f2a6f17..98e4407e 100644 --- a/picture.py +++ b/picture.py @@ -38,8 +38,8 @@ hat = EllipseAsset(100, 70, thinline, purple) triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) +Sprite(face, (289, 120)) Sprite(rectangle, (200, 60)) -Sprite(face, (200, 50)) Sprite(hat, (290, 100)) Sprite(triangle, (300, 300)) From 8914047fb004e052820559dfe43646e1f147c52b Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 13:00:23 -0500 Subject: [PATCH 07/25] Updated from Brython Server: 1/28/2019 1:00:23 PM --- picture.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 98e4407e..a9f37d9a 100644 --- a/picture.py +++ b/picture.py @@ -33,15 +33,17 @@ black = Color(0x000000, 1.0) thinline = LineStyle(1, black) -rectangle = RectangleAsset(50, 20, thinline, purple) +eye = EllipseAsset(20, 35, thinline, white) face = EllipseAsset(100, 100, thinline, wah) +rectangle = RectangleAsset(50, 20, thinline, purple) hat = EllipseAsset(100, 70, thinline, purple) triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) Sprite(face, (289, 120)) Sprite(rectangle, (200, 60)) Sprite(hat, (290, 100)) -Sprite(triangle, (300, 300)) +Sprite(eye, (290, 120)) +Sprite(eye, (300, 300)) # add your code here /\ /\ /\ From 217f32e2af9bdf330899c0ece626006e1b8d10ab Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 13:01:23 -0500 Subject: [PATCH 08/25] Updated from Brython Server: 1/28/2019 1:01:22 PM --- picture.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/picture.py b/picture.py index a9f37d9a..735974d5 100644 --- a/picture.py +++ b/picture.py @@ -33,7 +33,7 @@ black = Color(0x000000, 1.0) thinline = LineStyle(1, black) -eye = EllipseAsset(20, 35, thinline, white) +eye = EllipseAsset(25, 15, thinline, white) face = EllipseAsset(100, 100, thinline, wah) rectangle = RectangleAsset(50, 20, thinline, purple) hat = EllipseAsset(100, 70, thinline, purple) @@ -42,8 +42,8 @@ Sprite(face, (289, 120)) Sprite(rectangle, (200, 60)) Sprite(hat, (290, 100)) -Sprite(eye, (290, 120)) -Sprite(eye, (300, 300)) +Sprite(eye, (290, 150)) +Sprite(eye, (350, 150)) # add your code here /\ /\ /\ From a1bc6378ae9b242d773bd4bacf72748cf76a958e Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 13:05:23 -0500 Subject: [PATCH 09/25] Updated from Brython Server: 1/28/2019 1:05:22 PM --- picture.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/picture.py b/picture.py index 735974d5..df97636e 100644 --- a/picture.py +++ b/picture.py @@ -31,8 +31,10 @@ purple= Color(0xce27d3, 1.0) white = Color(0xffffff, 1.0) black = Color(0x000000, 1.0) +blue = Color(0x00ffff, 1.0) thinline = LineStyle(1, black) +eyeshadow = EllipseAsset(25, 15, thinline, blue) eye = EllipseAsset(25, 15, thinline, white) face = EllipseAsset(100, 100, thinline, wah) rectangle = RectangleAsset(50, 20, thinline, purple) @@ -40,10 +42,12 @@ triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) Sprite(face, (289, 120)) -Sprite(rectangle, (200, 60)) +Sprite(eyeshadow, (305, 230)) +Sprite(eye, (305, 225)) +Sprite(eye, (420, 225)) Sprite(hat, (290, 100)) -Sprite(eye, (290, 150)) -Sprite(eye, (350, 150)) +Sprite(rectangle, (200, 60)) + # add your code here /\ /\ /\ From 227d5a71c6d35cda4ca53f655c568a9f1cdba7da Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 13:05:27 -0500 Subject: [PATCH 10/25] Updated from Brython Server: 1/28/2019 1:05:27 PM From d4b0a54133b911890e3f5539095f92a697f395e1 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:09:09 -0500 Subject: [PATCH 11/25] Updated from Brython Server: 1/28/2019 2:09:08 PM --- picture.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picture.py b/picture.py index df97636e..74453f1b 100644 --- a/picture.py +++ b/picture.py @@ -40,9 +40,11 @@ rectangle = RectangleAsset(50, 20, thinline, purple) hat = EllipseAsset(100, 70, thinline, purple) triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) +nose = Sprite(face, (289, 120)) Sprite(eyeshadow, (305, 230)) +Sprite(eyeshadow, (420, 230)) Sprite(eye, (305, 225)) Sprite(eye, (420, 225)) Sprite(hat, (290, 100)) From 7df2ce5c09f70cab14172802c3172e5dcac1694c Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:19:45 -0500 Subject: [PATCH 12/25] Updated from Brython Server: 1/28/2019 2:19:44 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 74453f1b..dd5e909d 100644 --- a/picture.py +++ b/picture.py @@ -39,8 +39,7 @@ face = EllipseAsset(100, 100, thinline, wah) rectangle = RectangleAsset(50, 20, thinline, purple) hat = EllipseAsset(100, 70, thinline, purple) -triangle = PolygonAsset([(100,100), (50, 60), (200,70)], thinline, wah) -nose = +nose = PolygonAsset([(0, 0), (30, -50), (-100, -200)], thinline, wah) Sprite(face, (289, 120)) Sprite(eyeshadow, (305, 230)) @@ -49,6 +48,7 @@ Sprite(eye, (420, 225)) Sprite(hat, (290, 100)) Sprite(rectangle, (200, 60)) +Sprite(nose, (290, 200)) From f4d04a78ebe37e7cf8ec22ba0ccc16b8c3462f46 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:45:30 -0500 Subject: [PATCH 13/25] Updated from Brython Server: 1/28/2019 2:45:29 PM --- picture.py | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/picture.py b/picture.py index dd5e909d..198ebb76 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py -Author: -Credit: +Author: waSclthu11 +Credit: The tutorial and the ggame core API (tells you how to use everything). Assignment: @@ -32,23 +32,30 @@ white = Color(0xffffff, 1.0) black = Color(0x000000, 1.0) blue = Color(0x00ffff, 1.0) +wahh = Color(0xffb6c1, 1.0) thinline = LineStyle(1, black) +noline = LineStyle(0, white) eyeshadow = EllipseAsset(25, 15, thinline, blue) eye = EllipseAsset(25, 15, thinline, white) -face = EllipseAsset(100, 100, thinline, wah) +face = EllipseAsset(100, 100, noline, wah) rectangle = RectangleAsset(50, 20, thinline, purple) hat = EllipseAsset(100, 70, thinline, purple) -nose = PolygonAsset([(0, 0), (30, -50), (-100, -200)], thinline, wah) +nose = EllipseAsset(20, 40, thinline, wahh) +chin = PolygonAsset([(-45, 60), (-70, 0), (70, 0), (45, 60)], noline, wah) +www = PolygonAsset([(-10, 70), (-45, 0), (-45, -50), (-40, -50), (-40, 0), (40, 0), (40, -50), (45, -50), (45, 0), (10, 70)], noline, wah) +Sprite(chin, (316, 290)) Sprite(face, (289, 120)) Sprite(eyeshadow, (305, 230)) Sprite(eyeshadow, (420, 230)) Sprite(eye, (305, 225)) Sprite(eye, (420, 225)) Sprite(hat, (290, 100)) -Sprite(rectangle, (200, 60)) -Sprite(nose, (290, 200)) +Sprite(www, (342, 345)) +Sprite(nose, (367, 235)) + + From 5d17cbf2ebfdad9d44f9b003e069a5f2db6067d8 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:51:05 -0500 Subject: [PATCH 14/25] Updated from Brython Server: 1/28/2019 2:51:04 PM --- picture.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 198ebb76..066d1610 100644 --- a/picture.py +++ b/picture.py @@ -44,6 +44,7 @@ nose = EllipseAsset(20, 40, thinline, wahh) chin = PolygonAsset([(-45, 60), (-70, 0), (70, 0), (45, 60)], noline, wah) www = PolygonAsset([(-10, 70), (-45, 0), (-45, -50), (-40, -50), (-40, 0), (40, 0), (40, -50), (45, -50), (45, 0), (10, 70)], noline, wah) +dot = CircleAsset(7, thinline, black) Sprite(chin, (316, 290)) Sprite(face, (289, 120)) @@ -54,7 +55,8 @@ Sprite(hat, (290, 100)) Sprite(www, (342, 345)) Sprite(nose, (367, 235)) - +Sprite(dot, (325, 230)) +Sprite(dot, (435, 230)) From 459a9460732fcaa1e161c2d9e5fd30e0b11cf36a Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:51:54 -0500 Subject: [PATCH 15/25] Updated from Brython Server: 1/28/2019 2:51:53 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 066d1610..31fe106d 100644 --- a/picture.py +++ b/picture.py @@ -35,7 +35,7 @@ wahh = Color(0xffb6c1, 1.0) thinline = LineStyle(1, black) noline = LineStyle(0, white) - +print("BEHOLD, Waluigi!") eyeshadow = EllipseAsset(25, 15, thinline, blue) eye = EllipseAsset(25, 15, thinline, white) face = EllipseAsset(100, 100, noline, wah) From e526fe8368d983a566791c687c1f353010c7d77f Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 12:02:41 -0500 Subject: [PATCH 16/25] Updated from Brython Server: 1/29/2019 12:02:40 PM From 5eeaab6c33c847677664bc60c6e054410835ff72 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 12:03:30 -0500 Subject: [PATCH 17/25] Updated from Brython Server: 1/29/2019 12:03:29 PM From 8113aeb03a9b4586767a2d5db9dcc7f64830b263 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 12:33:19 -0500 Subject: [PATCH 18/25] Updated from Brython Server: 1/29/2019 12:33:18 PM --- picture.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picture.py b/picture.py index 31fe106d..f3485d2c 100644 --- a/picture.py +++ b/picture.py @@ -45,6 +45,7 @@ chin = PolygonAsset([(-45, 60), (-70, 0), (70, 0), (45, 60)], noline, wah) www = PolygonAsset([(-10, 70), (-45, 0), (-45, -50), (-40, -50), (-40, 0), (40, 0), (40, -50), (45, -50), (45, 0), (10, 70)], noline, wah) dot = CircleAsset(7, thinline, black) +stache = PolygonAsset([(-100, 0), (-50, 10), (0, 0), (50, 10), (100, 0), (50, 30), (0, 10), (-50, 30), (-100, 0)]) Sprite(chin, (316, 290)) Sprite(face, (289, 120)) @@ -57,6 +58,7 @@ Sprite(nose, (367, 235)) Sprite(dot, (325, 230)) Sprite(dot, (435, 230)) +Sprite(stache, (350, 340)) From 46af7c46720703708ac5ccd15d3159dc3fe0928d Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 12:34:37 -0500 Subject: [PATCH 19/25] Updated from Brython Server: 1/29/2019 12:34:36 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index f3485d2c..b1d2f0cb 100644 --- a/picture.py +++ b/picture.py @@ -58,7 +58,7 @@ Sprite(nose, (367, 235)) Sprite(dot, (325, 230)) Sprite(dot, (435, 230)) -Sprite(stache, (350, 340)) +Sprite(stache, (285, 330)) From 0789a098d468272e38493a6da1967410204f5d24 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 12:44:03 -0500 Subject: [PATCH 20/25] Updated from Brython Server: 1/29/2019 12:44:01 PM --- picture.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index b1d2f0cb..ef1d7027 100644 --- a/picture.py +++ b/picture.py @@ -24,7 +24,7 @@ for detailed information on ggame. """ -from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset +from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset, TextAsset # add your code here \/ \/ \/ wah = Color(0xedcc9b, 1.0) @@ -46,6 +46,9 @@ www = PolygonAsset([(-10, 70), (-45, 0), (-45, -50), (-40, -50), (-40, 0), (40, 0), (40, -50), (45, -50), (45, 0), (10, 70)], noline, wah) dot = CircleAsset(7, thinline, black) stache = PolygonAsset([(-100, 0), (-50, 10), (0, 0), (50, 10), (100, 0), (50, 30), (0, 10), (-50, 30), (-100, 0)]) +logo = CircleAsset(35, noline, white) +A = TextAsset("L", style="bold 40pt Arial", width=250, fill=Color(0x1122FF, 1.0)) + Sprite(chin, (316, 290)) Sprite(face, (289, 120)) @@ -59,6 +62,8 @@ Sprite(dot, (325, 230)) Sprite(dot, (435, 230)) Sprite(stache, (285, 330)) +Sprite(logo, (353, 150)) +Sprite(A, (353, 150)) From d68b1078c47245c6468f2ae26fb73d33cebf93c1 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:03:08 -0500 Subject: [PATCH 21/25] Updated from Brython Server: 1/29/2019 2:03:06 PM From f9847e77a9c95e521d7b41d71ddac2d237227180 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:04:07 -0500 Subject: [PATCH 22/25] Updated from Brython Server: 1/29/2019 2:04:05 PM From 1fc9aad2ad2612e3dcc6be85f48c36662c90f555 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:05:52 -0500 Subject: [PATCH 23/25] Updated from Brython Server: 1/29/2019 2:05:50 PM --- picture.py | 1 + 1 file changed, 1 insertion(+) diff --git a/picture.py b/picture.py index ef1d7027..b8cba928 100644 --- a/picture.py +++ b/picture.py @@ -25,6 +25,7 @@ """ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset, TextAsset +app = App() # add your code here \/ \/ \/ wah = Color(0xedcc9b, 1.0) From 85007a789ec17a7cacf34fd2146db69543b944f0 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:10:26 -0500 Subject: [PATCH 24/25] Updated from Brython Server: 1/29/2019 2:10:24 PM From 5755112654606376e08a27162c6b1c6f7b7e2c29 Mon Sep 17 00:00:00 2001 From: waSclthu11 <46973645+waSclthu11@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:15:37 -0500 Subject: [PATCH 25/25] Updated from Brython Server: 1/29/2019 2:15:35 PM