GMU:Actors, Traces, Collectives/SS17/sketch01: Difference between revisions

From Medien Wiki
(Created page with "<syntaxhighlight lang="java"> void setup() { size(640,360); } void draw() { background(255); PVector mouse = new PVector(mouseX,mouseY); PVector center = new PVecto...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<syntaxhighlight lang="java">
<syntaxhighlight lang="JavaScript">
void setup() {
void setup() {
   size(640,360);
   size(640,360);

Latest revision as of 21:29, 13 August 2017

void setup() {
  size(640,360);
}

void draw() {
  background(255);

  PVector mouse  = new PVector(mouseX,mouseY);
  PVector center = new PVector(width/2,height/2);

  mouse.sub(center);

  translate(width/2,height/2);
  line(0,0,mouse.x,mouse.y);
}