From ad492b9d2ad620cc9443e00472a3f14672d58119 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:32:48 -0500 Subject: [PATCH 01/22] Updated from Brython Server: 1/28/2019 2:32:47 PM --- picture.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 6e2a3e23..1f8b2349 100644 --- a/picture.py +++ b/picture.py @@ -1,7 +1,7 @@ """ picture.py -Author: -Credit: +Author: miViriaz15 +Credit: I used the internet for drawing inspiration, https://www.rapidtables.com/web/color/html-color-codes.html for color codes Assignment: @@ -27,6 +27,7 @@ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset # add your code here \/ \/ \/ +#defining colors # add your code here /\ /\ /\ From c136ae729b59b7524860e2c429319cb142061cc9 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:47:55 -0500 Subject: [PATCH 02/22] Updated from Brython Server: 1/28/2019 2:47:53 PM --- picture.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 1f8b2349..7a8e9c4e 100644 --- a/picture.py +++ b/picture.py @@ -25,9 +25,25 @@ """ from ggame import App, Color, LineStyle, Sprite, RectangleAsset, CircleAsset, EllipseAsset, PolygonAsset - +from math import sqrt # add your code here \/ \/ \/ #defining colors +cornflowerblue = Color(0x6495ED, 0.9) +black = Color(0x000000, 1.0) +white = Color(0xFFFFFF, 1.0) + +#defining line +thinlineblue = LineStyle(1, cornflowerblue) +thinlinewhite = LineStyle(1, white) +thinlineblack = LineStyle(1, black) + +#Defining Shapes +triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) + + +#print +Sprite(triangle, (120,120)) + # add your code here /\ /\ /\ From 6c096cf3b4d8174d366baa82b73dfdc0e9f692e2 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:54:27 -0500 Subject: [PATCH 03/22] Updated from Brython Server: 1/28/2019 2:54:26 PM --- picture.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/picture.py b/picture.py index 7a8e9c4e..f7d99ba4 100644 --- a/picture.py +++ b/picture.py @@ -28,7 +28,7 @@ from math import sqrt # add your code here \/ \/ \/ #defining colors -cornflowerblue = Color(0x6495ED, 0.9) +cornflowerblue = Color(0x6495ED, 1.0) black = Color(0x000000, 1.0) white = Color(0xFFFFFF, 1.0) @@ -39,12 +39,13 @@ #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) - +circle = CircleAsset(100,thinlineblue,cornflowerblue) #print -Sprite(triangle, (120,120)) - - +s=Sprite(triangle, (120,120)) +s.scale=0.8 +Sprite(circle, (60,45)) +Sprite(circle, (380,45)) # add your code here /\ /\ /\ From 56c26225de9e582cfab0612909341880164d0e04 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:55:51 -0500 Subject: [PATCH 04/22] Updated from Brython Server: 1/28/2019 2:55:49 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index f7d99ba4..b3749de8 100644 --- a/picture.py +++ b/picture.py @@ -46,7 +46,7 @@ s.scale=0.8 Sprite(circle, (60,45)) Sprite(circle, (380,45)) - +#s.rotation=inradians # add your code here /\ /\ /\ From 57a3d1dc5f09789eb17110e3c194096e75f5f3a8 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 14:57:24 -0500 Subject: [PATCH 05/22] Updated from Brython Server: 1/28/2019 2:57:22 PM --- picture.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index b3749de8..074d1e7a 100644 --- a/picture.py +++ b/picture.py @@ -40,12 +40,13 @@ #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) circle = CircleAsset(100,thinlineblue,cornflowerblue) - +#smalltriangle = PolygonAsset( #print s=Sprite(triangle, (120,120)) s.scale=0.8 Sprite(circle, (60,45)) Sprite(circle, (380,45)) + #s.rotation=inradians # add your code here /\ /\ /\ From b0598d2de6f431367e5fb45f1d71d22594d20033 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:03:22 -0500 Subject: [PATCH 06/22] Updated from Brython Server: 1/28/2019 3:03:21 PM --- picture.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 074d1e7a..9b7357e8 100644 --- a/picture.py +++ b/picture.py @@ -40,13 +40,14 @@ #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) circle = CircleAsset(100,thinlineblue,cornflowerblue) -#smalltriangle = PolygonAsset( +smalltriangle = PolygonAsset([(725,600), (775,600), (750, 500+ 25*sqrt(3))],thinlineblack, black) + #print s=Sprite(triangle, (120,120)) s.scale=0.8 Sprite(circle, (60,45)) Sprite(circle, (380,45)) - +Sprite(smalltriangle, (120,120)) #s.rotation=inradians # add your code here /\ /\ /\ From c83b69d16635549b0032f16a3ad85561b75458d3 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:06:54 -0500 Subject: [PATCH 07/22] Updated from Brython Server: 1/28/2019 3:06:52 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 9b7357e8..3a7de575 100644 --- a/picture.py +++ b/picture.py @@ -40,14 +40,14 @@ #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) circle = CircleAsset(100,thinlineblue,cornflowerblue) -smalltriangle = PolygonAsset([(725,600), (775,600), (750, 500+ 25*sqrt(3))],thinlineblack, black) +smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) #print s=Sprite(triangle, (120,120)) s.scale=0.8 Sprite(circle, (60,45)) Sprite(circle, (380,45)) -Sprite(smalltriangle, (120,120)) +Sprite(smalltriangle, (294.5,420)) #s.rotation=inradians # add your code here /\ /\ /\ From 78364367ebad8dfc952f4efc642ee389d63402b5 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:09:51 -0500 Subject: [PATCH 08/22] Updated from Brython Server: 1/28/2019 3:09:49 PM --- picture.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picture.py b/picture.py index 3a7de575..81f5bc50 100644 --- a/picture.py +++ b/picture.py @@ -41,6 +41,7 @@ triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) circle = CircleAsset(100,thinlineblue,cornflowerblue) smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) +whiteeye = CircleAsset(40,thinlinewhite,white) #print s=Sprite(triangle, (120,120)) @@ -48,6 +49,7 @@ Sprite(circle, (60,45)) Sprite(circle, (380,45)) Sprite(smalltriangle, (294.5,420)) +Sprite(whiteeye, (200,175)) #s.rotation=inradians # add your code here /\ /\ /\ From 2eb36d1dd3634473ec5439883ee7b1ead05247ab Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:11:16 -0500 Subject: [PATCH 09/22] Updated from Brython Server: 1/28/2019 3:11:14 PM --- picture.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 81f5bc50..c90139ed 100644 --- a/picture.py +++ b/picture.py @@ -41,7 +41,7 @@ triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) circle = CircleAsset(100,thinlineblue,cornflowerblue) smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) -whiteeye = CircleAsset(40,thinlinewhite,white) +whiteeye = CircleAsset(32,thinlinewhite,white) #print s=Sprite(triangle, (120,120)) @@ -49,7 +49,8 @@ Sprite(circle, (60,45)) Sprite(circle, (380,45)) Sprite(smalltriangle, (294.5,420)) -Sprite(whiteeye, (200,175)) +Sprite(whiteeye, (225,200)) +Sprite(whiteeye, (350,200)) #s.rotation=inradians # add your code here /\ /\ /\ From 8b0886008021f9d38e1132385eb6de8bf01c8119 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:12:43 -0500 Subject: [PATCH 10/22] Updated from Brython Server: 1/28/2019 3:12:42 PM --- picture.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index c90139ed..27133f0f 100644 --- a/picture.py +++ b/picture.py @@ -42,7 +42,7 @@ circle = CircleAsset(100,thinlineblue,cornflowerblue) smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) whiteeye = CircleAsset(32,thinlinewhite,white) - +pupil = CircleAsset(12,thinlineblack,black) #print s=Sprite(triangle, (120,120)) s.scale=0.8 @@ -51,6 +51,8 @@ Sprite(smalltriangle, (294.5,420)) Sprite(whiteeye, (225,200)) Sprite(whiteeye, (350,200)) +Sprite(pupil, (230, 220)) +Sprite(pupil, (355, 220)) #s.rotation=inradians # add your code here /\ /\ /\ From e930cf607c2089268e48204e9ead827fb6dbd790 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:12:53 -0500 Subject: [PATCH 11/22] Updated from Brython Server: 1/28/2019 3:12:51 PM --- picture.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/picture.py b/picture.py index 27133f0f..7f30a6e2 100644 --- a/picture.py +++ b/picture.py @@ -43,6 +43,7 @@ smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) whiteeye = CircleAsset(32,thinlinewhite,white) pupil = CircleAsset(12,thinlineblack,black) + #print s=Sprite(triangle, (120,120)) s.scale=0.8 @@ -53,6 +54,7 @@ Sprite(whiteeye, (350,200)) Sprite(pupil, (230, 220)) Sprite(pupil, (355, 220)) + #s.rotation=inradians # add your code here /\ /\ /\ From 6e8b88d688e39617af6ae9a189a81eee0acd0afb Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:13:26 -0500 Subject: [PATCH 12/22] Updated from Brython Server: 1/28/2019 3:13:25 PM From 64690a9c1af341918f371f8cd824abcafc521517 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:43:02 -0500 Subject: [PATCH 13/22] Updated from Brython Server: 1/28/2019 3:42:56 PM --- picture.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 7f30a6e2..8db782bd 100644 --- a/picture.py +++ b/picture.py @@ -43,7 +43,7 @@ smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) whiteeye = CircleAsset(32,thinlinewhite,white) pupil = CircleAsset(12,thinlineblack,black) - +whisker = RectangleAsset(100,7,thinlineblack,black) #print s=Sprite(triangle, (120,120)) s.scale=0.8 @@ -54,6 +54,18 @@ Sprite(whiteeye, (350,200)) Sprite(pupil, (230, 220)) Sprite(pupil, (355, 220)) +w=Sprite(whisker, (370, 330)) +w.rotation=.3 +W=Sprite(whisker, (370, 335)) +W.rotation=0 +m=Sprite(whisker, (370, 340)) +m.rotation=-.3 +r=Sprite(whisker, (168, 298)) +r.rotation=-.3 +k=Sprite(whisker, (168, 303)) +k.rotation=0 +l=Sprite(whisker, (168, 308)) +l.rotation=.3 #s.rotation=inradians # add your code here /\ /\ /\ From 206f961251a3c2f2192f246431cb8e086ddebb6e Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:48:56 -0500 Subject: [PATCH 14/22] Updated from Brython Server: 1/28/2019 3:48:56 PM --- picture.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/picture.py b/picture.py index 8db782bd..bfe0132b 100644 --- a/picture.py +++ b/picture.py @@ -60,11 +60,11 @@ W.rotation=0 m=Sprite(whisker, (370, 340)) m.rotation=-.3 -r=Sprite(whisker, (168, 298)) +r=Sprite(whisker, (174, 301)) r.rotation=-.3 -k=Sprite(whisker, (168, 303)) +k=Sprite(whisker, (170, 335)) k.rotation=0 -l=Sprite(whisker, (168, 308)) +l=Sprite(whisker, (174, 368)) l.rotation=.3 #s.rotation=inradians From e687b055a6f399c49e23d4c6df4ce22dc62ff816 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:50:27 -0500 Subject: [PATCH 15/22] Updated from Brython Server: 1/28/2019 3:50:26 PM --- picture.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index bfe0132b..37d18c3e 100644 --- a/picture.py +++ b/picture.py @@ -52,8 +52,8 @@ Sprite(smalltriangle, (294.5,420)) Sprite(whiteeye, (225,200)) Sprite(whiteeye, (350,200)) -Sprite(pupil, (230, 220)) -Sprite(pupil, (355, 220)) +Sprite(pupil, (255, 220)) +Sprite(pupil, (380, 220)) w=Sprite(whisker, (370, 330)) w.rotation=.3 W=Sprite(whisker, (370, 335)) From 9381c40bccd21c8e0a59c3268b62e89a6ea6020b Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:56:47 -0500 Subject: [PATCH 16/22] Updated from Brython Server: 1/28/2019 3:56:47 PM --- picture.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 37d18c3e..155ea828 100644 --- a/picture.py +++ b/picture.py @@ -31,6 +31,8 @@ cornflowerblue = Color(0x6495ED, 1.0) black = Color(0x000000, 1.0) white = Color(0xFFFFFF, 1.0) +gold = Color(0xFFD700, 1.0) +golder = Color(0xFFC900, 1.0) #defining line thinlineblue = LineStyle(1, cornflowerblue) @@ -39,21 +41,26 @@ #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) -circle = CircleAsset(100,thinlineblue,cornflowerblue) +circle = CircleAsset(100,thinlineblue, cornflowerblue) smalltriangle = PolygonAsset([(725,600), (775,600), (750, 600+ 25*sqrt(3))],thinlineblack, black) whiteeye = CircleAsset(32,thinlinewhite,white) pupil = CircleAsset(12,thinlineblack,black) whisker = RectangleAsset(100,7,thinlineblack,black) #print + #head s=Sprite(triangle, (120,120)) s.scale=0.8 + #ears Sprite(circle, (60,45)) Sprite(circle, (380,45)) + #nose Sprite(smalltriangle, (294.5,420)) + #eyes Sprite(whiteeye, (225,200)) Sprite(whiteeye, (350,200)) Sprite(pupil, (255, 220)) Sprite(pupil, (380, 220)) + #whiskers w=Sprite(whisker, (370, 330)) w.rotation=.3 W=Sprite(whisker, (370, 335)) From 32f7713abb8f31f3c2c3004816c54aae62c66e1c Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:04:04 -0500 Subject: [PATCH 17/22] Updated from Brython Server: 1/28/2019 4:04:04 PM --- picture.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/picture.py b/picture.py index 155ea828..6b3058ac 100644 --- a/picture.py +++ b/picture.py @@ -38,6 +38,8 @@ thinlineblue = LineStyle(1, cornflowerblue) thinlinewhite = LineStyle(1, white) thinlineblack = LineStyle(1, black) +thinlinegold = LineStyle(1, gold) +thinlinegolder = LineStyle(1, golder) #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue) @@ -46,6 +48,8 @@ whiteeye = CircleAsset(32,thinlinewhite,white) pupil = CircleAsset(12,thinlineblack,black) whisker = RectangleAsset(100,7,thinlineblack,black) +cheese = RectangleAsset(180, 70, thinlinegold, gold) + #print #head s=Sprite(triangle, (120,120)) @@ -73,6 +77,8 @@ k.rotation=0 l=Sprite(whisker, (174, 368)) l.rotation=.3 + #cheese +c=Sprite(cheese, (640, 215)) #s.rotation=inradians # add your code here /\ /\ /\ From f03a2de02672313872e06bd39188ba3cbd8616ad Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:07:36 -0500 Subject: [PATCH 18/22] Updated from Brython Server: 1/28/2019 4:07:36 PM --- picture.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/picture.py b/picture.py index 6b3058ac..8a3b9a44 100644 --- a/picture.py +++ b/picture.py @@ -49,7 +49,8 @@ pupil = CircleAsset(12,thinlineblack,black) whisker = RectangleAsset(100,7,thinlineblack,black) cheese = RectangleAsset(180, 70, thinlinegold, gold) - +cheesetop = PolygonAsset([(650,245), (830, 245), (780, 205), (650, 245)], thinlinegolder, golder) +cheesehole = EllipseAsset( #print #head s=Sprite(triangle, (120,120)) @@ -78,7 +79,8 @@ l=Sprite(whisker, (174, 368)) l.rotation=.3 #cheese -c=Sprite(cheese, (640, 215)) +c=Sprite(cheese, (650, 245)) +Sprite(cheesetop, (650, 205)) #s.rotation=inradians # add your code here /\ /\ /\ From 1bfd24e15781be7a449871fedbce1115f4f464be Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:10:44 -0500 Subject: [PATCH 19/22] Updated from Brython Server: 1/28/2019 4:10:44 PM --- picture.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/picture.py b/picture.py index 8a3b9a44..8468f810 100644 --- a/picture.py +++ b/picture.py @@ -50,7 +50,8 @@ whisker = RectangleAsset(100,7,thinlineblack,black) cheese = RectangleAsset(180, 70, thinlinegold, gold) cheesetop = PolygonAsset([(650,245), (830, 245), (780, 205), (650, 245)], thinlinegolder, golder) -cheesehole = EllipseAsset( +cheesehole = EllipseAsset(17,10, thinlinegolder, golder) +alsocheesehole = #print #head s=Sprite(triangle, (120,120)) @@ -81,6 +82,8 @@ #cheese c=Sprite(cheese, (650, 245)) Sprite(cheesetop, (650, 205)) +Sprite(cheesehole, (663, 260)) +Sprite(cheesehole, (750, 270)) #s.rotation=inradians # add your code here /\ /\ /\ From 42a638b329c222420779d0d6b15bbee72c605bad Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:15:30 -0500 Subject: [PATCH 20/22] Updated from Brython Server: 1/28/2019 4:15:30 PM --- picture.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/picture.py b/picture.py index 8468f810..055ecb64 100644 --- a/picture.py +++ b/picture.py @@ -51,7 +51,8 @@ cheese = RectangleAsset(180, 70, thinlinegold, gold) cheesetop = PolygonAsset([(650,245), (830, 245), (780, 205), (650, 245)], thinlinegolder, golder) cheesehole = EllipseAsset(17,10, thinlinegolder, golder) -alsocheesehole = +alsocheesehole = EllipseAsset(9,6, thinlinegolder, golder) +alsoalsocheesehole = EllipseAsset(11,8, thinlinegolder, golder) #print #head s=Sprite(triangle, (120,120)) @@ -83,8 +84,11 @@ c=Sprite(cheese, (650, 245)) Sprite(cheesetop, (650, 205)) Sprite(cheesehole, (663, 260)) -Sprite(cheesehole, (750, 270)) - +Sprite(cheesehole, (730, 280)) +Sprite(alsocheesehole, (717, 255)) +Sprite(alsocheesehole, (680, 295)) +Sprite(alsoalsocheesehole, (785, 292)) +Sprite(alsocheesehole, (800, 265)) #s.rotation=inradians # add your code here /\ /\ /\ From e79648a7391d3f989dc9a3d01d31eb3cf09515e7 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:16:45 -0500 Subject: [PATCH 21/22] Updated from Brython Server: 1/28/2019 4:16:45 PM --- picture.py | 1 + 1 file changed, 1 insertion(+) diff --git a/picture.py b/picture.py index 055ecb64..f92366dd 100644 --- a/picture.py +++ b/picture.py @@ -89,6 +89,7 @@ Sprite(alsocheesehole, (680, 295)) Sprite(alsoalsocheesehole, (785, 292)) Sprite(alsocheesehole, (800, 265)) +Sprite(alsoalsocheesehole, (766, 256)) #s.rotation=inradians # add your code here /\ /\ /\ From 68d3d085c18c88157d5f4dde93363c3ed7ccc619 Mon Sep 17 00:00:00 2001 From: miViriaz15 <46974607+miViriaz15@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:17:28 -0500 Subject: [PATCH 22/22] Updated from Brython Server: 1/28/2019 4:17:28 PM --- picture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picture.py b/picture.py index f92366dd..600c8811 100644 --- a/picture.py +++ b/picture.py @@ -39,7 +39,7 @@ thinlinewhite = LineStyle(1, white) thinlineblack = LineStyle(1, black) thinlinegold = LineStyle(1, gold) -thinlinegolder = LineStyle(1, golder) +thinlinegolder = LineStyle(1, golder) #I played around to get this one #Defining Shapes triangle = PolygonAsset([(500,500), (1000,500), (750, 500+ 250*sqrt(3))],thinlineblue, cornflowerblue)