Answered step by step
Verified Expert Solution
Question
1 Approved Answer
pla help asap 1) If you have an 800x500 pixel canvas (800 pixels in the x direction, 500 pixels in the y direction), how should
pla help asap
1) If you have an 800x500 pixel canvas (800 pixels in the x direction, 500 pixels in the y direction), how should you calculate the coordinates of the dot in the diagram below? (The canvas is divided into thirds.) A. x = 800/3, y = 2*500/3 B. * = 800/3, y = 500/3 C. X = 2*800/3, y = 2*500/3 D. X = 2*800/3, y = 500/3 E. x = 500/3, y = 800/3 Multiple Choice A B C D E 2) Assume that you have an 800x500 pixel canvas (800 pixels in the x direction, 500 pixels in the y direction). If the blue dot is at (300, 400), and the red dot is offset from the blue dot by 50 pixels in the x direction and 100 pixels in the y direction, what are the coordinates of the red dot? A. X = 300 + 50 = 350, y = 400 + 100 = 500 B. X = 300 + 50 = 350, y = 400 - 100 = 300 C. X = 300 - 50 = 250, y = 400 + 100 = 500 D. X = 300 - 50 = 250, y = 400 - 100 = 300 Multiple Choice A B D E 3) Assume that you have an 500x400 pixel canvas (the lines mark each 100 pixels). If the blue dot is at (400, 300), the red dot is at (250, 200), and the green dot is at (450, 100), which of the following correctly draws a triangle connecting the dots? A. triangle(400, 250, 450, 300, 200, 100); B. triangle(400, 450, 250, 300, 100, 200); C. triangle(400, 300, 250, 200, 450, 100); D. triangle(250, 200, 450, 100, 400, 300); E. triangle(450, 100, 400, 300, 250, 200); Multiple Choice E E D A B 4) The width of the rectangle is A. 300 pixels B. 50 pixels C. 200 pixels D. 100 pixels Multiple Choice A B E D Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started