Canvas Project
At first I decided to do my project on pac man but then decided to make it on a house I found on the Internet. I spent nearly 7 hours total on this project and the most challenging part was figuring out how to make the door and the lines on the roof. This is my first time ever doing coding and honestly probably the most challenging assignment I have ever done. I look forward to seeing everyone else's work in the class so I can soak in as much knowledge on how to become better using adobe dreamweaver, especially when it comes to arcs. As challenging as this assignment was for me, at least I got through it and have something to show for. Inspiration: Code: //Rectangle 3 var x=340; var y=110; var width = 50 var height= 100; context.beginPath(); context.rect(x, y, width, height); context.lineWidth = 4; context.fillStyle = 'rgba(248,248,248,1.00)'; context.strokeStyle = 'rgba(10,9,9,1.00)'; context.fill(); context.stroke(); ...