Question: Found this practice problem online! Need some help to figure out. This is for C# ONLY. And here is what the letter O would look
Found this practice problem online! Need some help to figure out. This is for C# ONLY.\ And here is what the letter O would look like below! I think there needs to be a class for font and three methods!\ LinkedList GetSquare(float scale)\ {\ LinkedList list = new LinkedList();\ \ list.AddLast(new Vector2(0 * scale, 0 * scale));\ list.AddLast(new Vector2(2 * scale, 0 * scale));\ \ list.AddLast(new Vector2(2 * scale, 0 * scale));\ list.AddLast(new Vector2(2 * scale, 2 * scale));\ \ list.AddLast(new Vector2(2 * scale, 2 * scale));\ list.AddLast(new Vector2(0 * scale, 2 * scale));\ \ list.AddLast(new Vector2(0 * scale, 2 * scale));\ list.AddLast(new Vector2(0 * scale, 0 * scale));\ \ return list;\ }

Your program should emulate the font shown in figure 1 below. The font system should allow the programmer to: Display a string at any visible location on the screen. Display text in any available color. Display text in any size. It is the programmer's responsibility to: Ensure that the location specified for the text is within the boundaries of the screen. Ensure that the size of the text is not too large for the current screen size
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
