// the coordinates of the lines: each line goes "from" a point "to" a point (PVector).
// The lists are parallel in that sense that the elements of both lists together make a line:
// the 0th element of both lists make one line, the 1st element of both lists make one line, the 2nd etc.
ArrayList<PVector> from = new ArrayList();
ArrayList<PVector> to = new ArrayList();
// necessary to know if the mouse enters a "from" or a "to" point of a line
int situation=0;
// -------------------------------------------------------------------------
// processing core functions
void setup() {
size(600, 1000);
stroke(255);
}
void draw() {
background (0);
stroke(255);
// show all stored lines
for (int i = 0; i < to.size(); i++) {
PVector currentFrom = from.get(i);
PVector currentTo = to.get(i);
// the line
linePV ( currentFrom,
currentTo );
}//for
if (situation==1) {
stroke(0, 255, 0);
linePV(from.get(from.size()-1),
new PVector(mouseX, mouseY));
}
}//func
// -------------------------------------------------------------------------
// Inputs
void mousePressed() {
// depending on situation we store mouse-position as from or as to
if (situation==0)
from.add (new PVector (mouseX, mouseY));
else if (situation==1)
to.add (new PVector (mouseX, mouseY));
// manage situation variable
situation++;
if (situation>1)
situation=0;
}
// -------------------------------------------------------------------------
// Tools
void linePV ( PVector pv1, PVector pv2) {
line(pv1.x, pv1.y,
pv2.x, pv2.y);
}//func
//
2 Likes