From c2a14da00c87105f27759369d58f4f75e654b6f9 Mon Sep 17 00:00:00 2001 From: Spencerscooper Date: Fri, 8 Dec 2023 09:57:16 +0000 Subject: [PATCH] Pretty picture challenge one explanation --- Week-3/Pretty-picture/Questions.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week-3/Pretty-picture/Questions.md diff --git a/Week-3/Pretty-picture/Questions.md b/Week-3/Pretty-picture/Questions.md new file mode 100644 index 0000000..82cccaa --- /dev/null +++ b/Week-3/Pretty-picture/Questions.md @@ -0,0 +1,4 @@ +#Challenges1 Question +

According to your instruction or recommendation for one to understand coordinator and draw picture/pixel in python you need to understand the coordinate plan which happened to be the x and y axis. So yesterday I search this site https://www.splashlearn.com/math-vocabulary/geometry/coordinates and understand that the coordinate have four quadrants. quadrant i(+,+) quadrantii(-,+) quadrant iii (-,-) and quadrant iv(+,-) and origin is at the center (0). Forward more when a value like this Circle((350,255),100) which has three value. The first value 350 represent positive x, the second value represent positive y while the last value tell you how big the circle will be on a coordinate. My second Circle that represent the eye have similar step. first value represent the eye.Circle((x=300,y255), "how big the first eye is 20) #This circle represent left eye and it is situated in the first quadrant i(+,+)

and same for the second eye in my code.Now my response to drawing a nose will come after I under this https://www.splashlearn.com/math-vocabulary/geometry/line. + +Hope this find you well. \ No newline at end of file