xxxxxxxxxx
57
var font
function setup() {
createCanvas(400, 600);
canvas = createCanvas
rectMode(CENTER)
}
function preload() {
font = loadFont('./NectoMono-Regular.otf');
}
function draw() {
background('black')
textFont (font)
strokeWeight(20)
stroke("skyblue")
line(100,200,300,200)
line(100,100,100,400)
stroke("steelblue")
line(0,300,300,300)
line(350,350,50,350)
line(150,400,400,400)
fill("black")
square(0,0,400,400)
strokeWeight(20)
fill("skyblue")
stroke("steelblue")
circle(400,300,300)
strokeWeight(0)
fill("skyblue")
textSize(25)
text("Ashanti Latta", 90,180)
fill("skyblue")
textSize(15)
text("alatta@mica.edu", 115,230)
textFont("Economica")
text("MICA Student", 400,400)
}
function mouseClicked() {
console.log("Ive been clicked!")
saveCanvas('myCanvas.jpg');
}