From 7d560ea57dae61342c214567a390e51d173f9467 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:42:41 -0500 Subject: [PATCH 01/33] Updated from Brython Server: 1/28/2019 2:42:41 PM --- picture.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/picture.py b/picture.py index 6e2a3e23..173c7304 100644 --- a/picture.py +++ b/picture.py @@ -1,6 +1,6 @@ """ picture.py -Author: +Author: Andrew Enelow Credit: Assignment: @@ -26,11 +26,24 @@ """ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset -# add your code here \/ \/ \/ +red = Color(0xff0000, 1.0) +green = Color(0x00ff00, 1.0) +blue = Color(0x0000ff, 1.0) +black = Color(0x000000, 1.0) +thinline = LineStyle(1, black) -# add your code here /\ /\ /\ +rectangle = RectangleAsset(50, 20, thinline, blue) +circle = CircleAsset(50, thinline, green) + +ellipse= EllipseAsset(50, 20, thinline, red) + +Sprite(rectangle, (200, 50)) + +Sprite(circle, (400, 50)) + +Sprite(ellipse, (200, 100)) myapp = App() myapp.run() From 3c0809d7c55d248c309b79a09425721296172bcb Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:50:05 -0500 Subject: [PATCH 02/33] Updated from Brython Server: 1/28/2019 2:50:05 PM --- picture.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 173c7304..bda35d46 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py Author: Andrew Enelow -Credit: +Credit: stack overflow Assignment: @@ -37,7 +37,9 @@ circle = CircleAsset(50, thinline, green) -ellipse= EllipseAsset(50, 20, thinline, red) +ellipse = EllipseAsset(50, 20, thinline, red) + +polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) Sprite(rectangle, (200, 50)) @@ -45,5 +47,7 @@ Sprite(ellipse, (200, 100)) +Sprite(polygon, (400, 100)) + myapp = App() myapp.run() From 292dc6620ea06daa14d492f3ded1b26c998abcb8 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 10:10:51 -0500 Subject: [PATCH 03/33] Updated from Brython Server: 1/29/2019 10:10:51 AM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index bda35d46..16bc7f48 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py Author: Andrew Enelow -Credit: stack overflow +Credit: stack overflow, brython server Assignment: From 5e54d8be1c2f7d61f3371c4f6950144a1790c2d4 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 10:11:00 -0500 Subject: [PATCH 04/33] Updated from Brython Server: 1/29/2019 10:11:00 AM From c2128ce52b63dbfa18bb0c78344d267c891b03b2 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 10:12:00 -0500 Subject: [PATCH 05/33] Updated from Brython Server: 1/29/2019 10:12:00 AM --- picture.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/picture.py b/picture.py index 16bc7f48..692755d7 100644 --- a/picture.py +++ b/picture.py @@ -49,5 +49,17 @@ Sprite(polygon, (400, 100)) +Sprite(rectangle, (300, 50)) + +Sprite(rectangle, (400, 50)) + +Sprite(rectangle, (500, 50)) + +Sprite(rectangle, (600, 50)) + +Sprite(rectangle, (700, 50)) + +Sprite(rectangle, (800, 50)) + myapp = App() myapp.run() From babccccc556e1816193d4288e87688e526571f0c Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:09:24 -0500 Subject: [PATCH 06/33] Updated from Brython Server: 1/29/2019 2:09:24 PM --- picture.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 692755d7..5127a517 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py Author: Andrew Enelow -Credit: stack overflow, brython server +Credit: stack overflow, brython server, trinket.io Assignment: @@ -30,6 +30,7 @@ green = Color(0x00ff00, 1.0) blue = Color(0x0000ff, 1.0) black = Color(0x000000, 1.0) +yellow = Color(0xFFFF00, 1.0) thinline = LineStyle(1, black) From cc4b7013db8d7db901164ab4d0364834521e0d97 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:12:07 -0500 Subject: [PATCH 07/33] Updated from Brython Server: 1/29/2019 2:12:06 PM --- picture.py | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/picture.py b/picture.py index 5127a517..8601a75a 100644 --- a/picture.py +++ b/picture.py @@ -31,36 +31,23 @@ blue = Color(0x0000ff, 1.0) black = Color(0x000000, 1.0) yellow = Color(0xFFFF00, 1.0) +skyblue = Color(0x87CEEB, 1.0) thinline = LineStyle(1, black) -rectangle = RectangleAsset(50, 20, thinline, blue) +sky = RectangleAsset(1500, 500, thinline, skyblue) -circle = CircleAsset(50, thinline, green) +sun = CircleAsset(50, thinline, yellow) ellipse = EllipseAsset(50, 20, thinline, red) polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) -Sprite(rectangle, (200, 50)) +Sprite(sky, (0, 0)) -Sprite(circle, (400, 50)) +Sprite(sun, (50, 50)) -Sprite(ellipse, (200, 100)) -Sprite(polygon, (400, 100)) - -Sprite(rectangle, (300, 50)) - -Sprite(rectangle, (400, 50)) - -Sprite(rectangle, (500, 50)) - -Sprite(rectangle, (600, 50)) - -Sprite(rectangle, (700, 50)) - -Sprite(rectangle, (800, 50)) myapp = App() myapp.run() From a45c1356adf5337379e151813f5996d4856c78f9 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:12:13 -0500 Subject: [PATCH 08/33] Updated from Brython Server: 1/29/2019 2:12:13 PM From c9e125d7e6a561e9d52728749bcc489efbc3767f Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:13:41 -0500 Subject: [PATCH 09/33] Updated from Brython Server: 1/29/2019 2:13:41 PM --- picture.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/picture.py b/picture.py index 8601a75a..91b54f7d 100644 --- a/picture.py +++ b/picture.py @@ -39,6 +39,8 @@ sun = CircleAsset(50, thinline, yellow) +grass = RectangleAsset(1500, 100, thinline, green) + ellipse = EllipseAsset(50, 20, thinline, red) polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) @@ -47,6 +49,8 @@ Sprite(sun, (50, 50)) +Sprite(grass, (0, 500) + myapp = App() From 3b8cccf6402bded4eae65f9c586552f5e65867a4 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:13:55 -0500 Subject: [PATCH 10/33] Updated from Brython Server: 1/29/2019 2:13:54 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 91b54f7d..9de4ff84 100644 --- a/picture.py +++ b/picture.py @@ -49,7 +49,7 @@ Sprite(sun, (50, 50)) -Sprite(grass, (0, 500) +Sprite(grass, (0, 500)) From b77f36ac564230aa19d072746785085770c83da1 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:15:08 -0500 Subject: [PATCH 11/33] Updated from Brython Server: 1/29/2019 2:15:07 PM --- picture.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picture.py b/picture.py index 9de4ff84..3e54c828 100644 --- a/picture.py +++ b/picture.py @@ -54,4 +54,6 @@ myapp = App() +app.width = 1600 +app.height = 900 myapp.run() From 83d9ad87cde8fb8fb2b1caeacc4242fc5b77e72b Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:16:02 -0500 Subject: [PATCH 12/33] Updated from Brython Server: 1/29/2019 2:16:02 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 3e54c828..51c17153 100644 --- a/picture.py +++ b/picture.py @@ -54,6 +54,6 @@ myapp = App() -app.width = 1600 -app.height = 900 +myapp.width = 1600 +myapp.height = 900 myapp.run() From 78f97171cfa7c505abe35d8edb2244f6e8d00cf3 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:18:41 -0500 Subject: [PATCH 13/33] Updated from Brython Server: 1/29/2019 2:18:40 PM --- picture.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 51c17153..2c81ed92 100644 --- a/picture.py +++ b/picture.py @@ -41,6 +41,8 @@ grass = RectangleAsset(1500, 100, thinline, green) +brick = RectangleAsset(300, 300, thinline, red) + ellipse = EllipseAsset(50, 20, thinline, red) polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) @@ -51,7 +53,7 @@ Sprite(grass, (0, 500)) - +Sprite(brick, (200, 200) myapp = App() myapp.width = 1600 From 30371d8053e885f8c61b3e3a858f0f96f2ac02dc Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:19:16 -0500 Subject: [PATCH 14/33] Updated from Brython Server: 1/29/2019 2:19:15 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 2c81ed92..667acbd0 100644 --- a/picture.py +++ b/picture.py @@ -53,7 +53,7 @@ Sprite(grass, (0, 500)) -Sprite(brick, (200, 200) +Sprite(brick, (200, 200)) myapp = App() myapp.width = 1600 From e21a0578d9c9491d5ac6b05089c1f1e3f16e3881 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:22:28 -0500 Subject: [PATCH 15/33] Updated from Brython Server: 1/29/2019 2:22:27 PM --- picture.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 667acbd0..ed470aab 100644 --- a/picture.py +++ b/picture.py @@ -32,6 +32,7 @@ black = Color(0x000000, 1.0) yellow = Color(0xFFFF00, 1.0) skyblue = Color(0x87CEEB, 1.0) +grey = Color(0x696969, 1.0) thinline = LineStyle(1, black) @@ -41,6 +42,8 @@ grass = RectangleAsset(1500, 100, thinline, green) +roof = PolygonAsset([(0,75), (150,0), (300,75), (0,75)], thinline, red) + brick = RectangleAsset(300, 300, thinline, red) ellipse = EllipseAsset(50, 20, thinline, red) @@ -53,7 +56,9 @@ Sprite(grass, (0, 500)) -Sprite(brick, (200, 200)) +Sprite(brick, (500, 200)) + +Sprite(roof, (500, 200)) myapp = App() myapp.width = 1600 From 8acef4df7f7a3e0740b94f73ded21bd8f4237354 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:24:44 -0500 Subject: [PATCH 16/33] Updated from Brython Server: 1/29/2019 2:24:43 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index ed470aab..c2fc4cfe 100644 --- a/picture.py +++ b/picture.py @@ -42,7 +42,7 @@ grass = RectangleAsset(1500, 100, thinline, green) -roof = PolygonAsset([(0,75), (150,0), (300,75), (0,75)], thinline, red) +roof = PolygonAsset([(0,100), (200,0), (400,100), (0,100)], thinline, red) brick = RectangleAsset(300, 300, thinline, red) @@ -58,7 +58,7 @@ Sprite(brick, (500, 200)) -Sprite(roof, (500, 200)) +Sprite(roof, (500, 100)) myapp = App() myapp.width = 1600 From 186013ac14f6a58d4d9d7ca1f81c4c4742c96056 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:26:28 -0500 Subject: [PATCH 17/33] Updated from Brython Server: 1/29/2019 2:26:28 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index c2fc4cfe..fa9916dc 100644 --- a/picture.py +++ b/picture.py @@ -42,7 +42,7 @@ grass = RectangleAsset(1500, 100, thinline, green) -roof = PolygonAsset([(0,100), (200,0), (400,100), (0,100)], thinline, red) +roof = PolygonAsset([(0,100), (200,0), (400,100), (0,100)], thinline, grey) brick = RectangleAsset(300, 300, thinline, red) @@ -58,7 +58,7 @@ Sprite(brick, (500, 200)) -Sprite(roof, (500, 100)) +Sprite(roof, (450, 100)) myapp = App() myapp.width = 1600 From 44b7d859ceb54fb4d30d69127bf8b9040be8442c Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:28:51 -0500 Subject: [PATCH 18/33] Updated from Brython Server: 1/29/2019 2:28:51 PM --- picture.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index fa9916dc..d72e5ffc 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py Author: Andrew Enelow -Credit: stack overflow, brython server, trinket.io +Credit: stack overflow, brython server, trinket.io, Alec Assignment: @@ -46,7 +46,7 @@ brick = RectangleAsset(300, 300, thinline, red) -ellipse = EllipseAsset(50, 20, thinline, red) +pond = EllipseAsset(50, 20, thinline, blue) polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) @@ -60,6 +60,8 @@ Sprite(roof, (450, 100)) +Sprite(pond, (800, 600)) + myapp = App() myapp.width = 1600 myapp.height = 900 From 3ad5762589acf6d65497d6dbaca0f11e3457943e Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:31:03 -0500 Subject: [PATCH 19/33] Updated from Brython Server: 1/29/2019 2:31:03 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index d72e5ffc..6f4cfa8c 100644 --- a/picture.py +++ b/picture.py @@ -60,7 +60,7 @@ Sprite(roof, (450, 100)) -Sprite(pond, (800, 600)) +Sprite(pond, (600, 400)) myapp = App() myapp.width = 1600 From 2440023e9947ddc8596d8416420153a967396c3f Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:33:00 -0500 Subject: [PATCH 20/33] Updated from Brython Server: 1/29/2019 2:32:59 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 6f4cfa8c..301cc341 100644 --- a/picture.py +++ b/picture.py @@ -60,7 +60,7 @@ Sprite(roof, (450, 100)) -Sprite(pond, (600, 400)) +Sprite(pond, (700, 450)) myapp = App() myapp.width = 1600 From eca904911563f43a18547ed99ff3107d5a410528 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:34:25 -0500 Subject: [PATCH 21/33] Updated from Brython Server: 1/29/2019 2:34:25 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 301cc341..e0a88ff6 100644 --- a/picture.py +++ b/picture.py @@ -60,7 +60,7 @@ Sprite(roof, (450, 100)) -Sprite(pond, (700, 450)) +Sprite(pond, (800, 500)) myapp = App() myapp.width = 1600 From 33efa34df89958062041f09db280bc519e09df65 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:35:26 -0500 Subject: [PATCH 22/33] Updated from Brython Server: 1/29/2019 2:35:26 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index e0a88ff6..a45678c8 100644 --- a/picture.py +++ b/picture.py @@ -60,7 +60,7 @@ Sprite(roof, (450, 100)) -Sprite(pond, (800, 500)) +Sprite(pond, (850, 525)) myapp = App() myapp.width = 1600 From 4d456fbca34ba1649b25f3e16fdd5e49d34a4ffd Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:39:20 -0500 Subject: [PATCH 23/33] Updated from Brython Server: 1/29/2019 2:39:18 PM --- picture.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index a45678c8..ab58974b 100644 --- a/picture.py +++ b/picture.py @@ -33,6 +33,8 @@ yellow = Color(0xFFFF00, 1.0) skyblue = Color(0x87CEEB, 1.0) grey = Color(0x696969, 1.0) +brick = Color(0xA52A2A, 1.0) +khaki = Color(0xF0E68C, 1.0) thinline = LineStyle(1, black) @@ -44,19 +46,23 @@ roof = PolygonAsset([(0,100), (200,0), (400,100), (0,100)], thinline, grey) -brick = RectangleAsset(300, 300, thinline, red) +house = RectangleAsset(300, 300, thinline, khaki) pond = EllipseAsset(50, 20, thinline, blue) polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) +chim = RectangleAsset(50, 100, thinline, brick) + Sprite(sky, (0, 0)) Sprite(sun, (50, 50)) Sprite(grass, (0, 500)) -Sprite(brick, (500, 200)) +Sprite(house, (500, 200)) + +Sprite(chim, (800, 100)) Sprite(roof, (450, 100)) From 3540ae483dc473c6164d6632e104dfb53449bb3e Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:41:07 -0500 Subject: [PATCH 24/33] Updated from Brython Server: 1/29/2019 2:41:07 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index ab58974b..fe9e6d9e 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py Author: Andrew Enelow -Credit: stack overflow, brython server, trinket.io, Alec +Credit: stack overflow, brython server, trinket.io, [Alec, Matt (Not for code)] Assignment: @@ -62,7 +62,7 @@ Sprite(house, (500, 200)) -Sprite(chim, (800, 100)) +Sprite(chim, (725, 150)) Sprite(roof, (450, 100)) From c08c1959098a6db329f98d4590efc5bbb5171040 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:41:48 -0500 Subject: [PATCH 25/33] Updated from Brython Server: 1/29/2019 2:41:48 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index fe9e6d9e..edb311e3 100644 --- a/picture.py +++ b/picture.py @@ -62,7 +62,7 @@ Sprite(house, (500, 200)) -Sprite(chim, (725, 150)) +Sprite(chim, (725, 50)) Sprite(roof, (450, 100)) From 5bad05a4355b1d22fe44274bf50d46bb198d3243 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:42:21 -0500 Subject: [PATCH 26/33] Updated from Brython Server: 1/29/2019 2:42:21 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index edb311e3..a6ee061a 100644 --- a/picture.py +++ b/picture.py @@ -52,7 +52,7 @@ polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) -chim = RectangleAsset(50, 100, thinline, brick) +chim = RectangleAsset(50, 150, thinline, brick) Sprite(sky, (0, 0)) @@ -62,7 +62,7 @@ Sprite(house, (500, 200)) -Sprite(chim, (725, 50)) +Sprite(chim, (725, 100)) Sprite(roof, (450, 100)) From 3fab05012712d5551b276aa28ee44d9844ab9756 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:42:54 -0500 Subject: [PATCH 27/33] Updated from Brython Server: 1/29/2019 2:42:54 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index a6ee061a..3d33a66e 100644 --- a/picture.py +++ b/picture.py @@ -62,7 +62,7 @@ Sprite(house, (500, 200)) -Sprite(chim, (725, 100)) +Sprite(chim, (725, 50)) Sprite(roof, (450, 100)) From 2547e52f0cd4a1efb7843124f382730cac441d8f Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:47:43 -0500 Subject: [PATCH 28/33] Updated from Brython Server: 1/29/2019 2:47:43 PM --- picture.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 3d33a66e..f66cfd5f 100644 --- a/picture.py +++ b/picture.py @@ -52,7 +52,9 @@ polygon = PolygonAsset([(0,0), (50,50), (50,100), (0,0)], thinline, red) -chim = RectangleAsset(50, 150, thinline, brick) +chim = RectangleAsset(50, 125, thinline, brick) + +door = RectangleAsset(100, 175, thinline, grey) Sprite(sky, (0, 0)) @@ -62,12 +64,14 @@ Sprite(house, (500, 200)) -Sprite(chim, (725, 50)) +Sprite(chim, (725, 75)) Sprite(roof, (450, 100)) Sprite(pond, (850, 525)) +Sprite(door, (600, 325)) + myapp = App() myapp.width = 1600 myapp.height = 900 From 520d963bbdf8fb1806e1d02760f20ae75f7c1e58 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:49:48 -0500 Subject: [PATCH 29/33] Updated from Brython Server: 1/29/2019 2:49:48 PM --- picture.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index f66cfd5f..436ac765 100644 --- a/picture.py +++ b/picture.py @@ -54,7 +54,9 @@ chim = RectangleAsset(50, 125, thinline, brick) -door = RectangleAsset(100, 175, thinline, grey) +door = RectangleAsset(100, 175, thinline, brick) + +window = RectangleAsset(25, 50, thinline, brick) Sprite(sky, (0, 0)) @@ -72,6 +74,8 @@ Sprite(door, (600, 325)) +Sprite(window, (615, 350)) + myapp = App() myapp.width = 1600 myapp.height = 900 From 900482aa780c1220b989ddcfb3fc84d2fb246880 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:51:41 -0500 Subject: [PATCH 30/33] Updated from Brython Server: 1/29/2019 2:51:41 PM --- picture.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 436ac765..192a4464 100644 --- a/picture.py +++ b/picture.py @@ -56,7 +56,7 @@ door = RectangleAsset(100, 175, thinline, brick) -window = RectangleAsset(25, 50, thinline, brick) +window = RectangleAsset(25, 50, thinline, black) Sprite(sky, (0, 0)) @@ -74,7 +74,9 @@ Sprite(door, (600, 325)) -Sprite(window, (615, 350)) +Sprite(window, (620, 350)) + +Sprite(window, (655, 350)) myapp = App() myapp.width = 1600 From 0aadc4375f281a7f0cf02bda3c9cf309e8b78e1b Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:55:03 -0500 Subject: [PATCH 31/33] Updated from Brython Server: 1/29/2019 2:55:01 PM --- picture.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/picture.py b/picture.py index 192a4464..ebe6a45e 100644 --- a/picture.py +++ b/picture.py @@ -58,6 +58,8 @@ window = RectangleAsset(25, 50, thinline, black) +knob = CircleAsset(5, thinline, khaki) + Sprite(sky, (0, 0)) Sprite(sun, (50, 50)) @@ -78,6 +80,8 @@ Sprite(window, (655, 350)) +Sprite(knob, (680, 450)) + myapp = App() myapp.width = 1600 myapp.height = 900 From ebd6a39628689364b61de0d89e9673e4e54ed0a6 Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:55:36 -0500 Subject: [PATCH 32/33] Updated from Brython Server: 1/29/2019 2:55:35 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index ebe6a45e..60185be7 100644 --- a/picture.py +++ b/picture.py @@ -80,7 +80,7 @@ Sprite(window, (655, 350)) -Sprite(knob, (680, 450)) +Sprite(knob, (680, 425)) myapp = App() myapp.width = 1600 From c8f1b33db8ee0bd9cd3e633ed231ae0eae08378c Mon Sep 17 00:00:00 2001 From: anEndrel23 Hhs <44811950+anEndrel23@users.noreply.github.com> Date: Tue, 29 Jan 2019 14:56:19 -0500 Subject: [PATCH 33/33] Updated from Brython Server: 1/29/2019 2:56:17 PM