top of page
Writer's pictureturatsinze junior

Integration Application

function homework two for integration application programming


Code for Video Below 
/**
 * Loop. 
 * 
 * If noLoop() is run in setup(), the code in draw() 
 * is only run once. In this example, click the mouse 
 * to run the loop() function to cause the draw() the 
 * run continuously. 
 */float y = 180;
 
// The statements in the setup() function // run once when the program beginsvoid setup() {
  size(640, 360);  // Size should be the first statementstroke(255);     // Set stroke color to whitenoLoop();
}

void draw() { 
  background(0);  // Set the background to blackline(0, y, width, y);  
  y = y - 1; 
  if (y < 0) { 
    y = height; 
  } 
  } 

void mousePressed() {
  loop();
}

after changing colors




8 views0 comments

Recent Posts

See All

Comments


bottom of page