Posts

Showing posts from August, 2017

Hello!

My name is Kevin Wagenheim. I am a Mathematical Programming major, with a minor in digital arts. I am very excited to see code on the first day of class, so I have a feeling I will like this class very much. I have a little bit of coding background, but none in HTML. I am excited to learn more HTML and visually see it turn into something!

9/25 Assignment #1

Image
Kevin Wagenheim Art210 Assignment #1 9/25 <!doctype html> <html> <head> <meta charset="UTF-8"> <title> ART 210 - CANVAS PROJECT </title> <style type="text/css"> body,td,th { font-family: Helvetica, Arial, sans-serif; font-size: 12px; color: rgba(0,0,0,1); } body { background-color: rgba(255,255,255,1); } #myCanvas { border: rgba(102,0,255,1) medium dashed; } </style> </head> <body> <canvas id="myCanvas" width="800" height="600"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); //// >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> YOUR CODE STARTS HERE context.beginPath();  context.moveTo(100,100);  context.lineTo(200,100);  context.lineTo(150,200);  context.