top of page
Search By Tags
Vivien Peng

Computer Science Major

Busienss Minor

Class of 2016

New York University

College of Arts and Science 

 

From: Beijing, China

E-mail: wp479@nyu.edu

Project1 --- self-portrait

 

 

//NAME: Project 01 __ Draw a picture

//CLASS: Introduction to Communicative Media

//DATE: 5/28/14

//AUTHOR: Vivien Peng

 

 

//creating background

size(1000,700);

background(0);

 

//creating shapes

noStroke();

//fill(255,20,147);    hot pink

fill(255);

 

ellipse(500,300,170,200);    //face

 

ellipse(420,310,50,50);      //left ear

ellipse(580,310,50,50);      //right ear

 

fill(0);    //black

 

ellipse(460,300,25,25);

ellipse(540,300,25,25);

 

triangle(500,300,480,340,520,340);

 

 

fill(255,20,147);

ellipse(500,370,40,20);

 

 

 

stroke(8);

stroke(255,255,255);

line(460,370,540,370);

 

quad(470,280,430,280,440,270,470,270);

quad(530,280,570,280,560,270,530,270);

 

 

 

 

 

 

 

 

 

bottom of page