xxxxxxxxxx
26
class Measure {
lines() {
stroke(textcolor);
strokeWeight(2);
line(d, 6*m, d+(affc.characters.length), 6*m);
line(d, (6*m)-(s/2), d, 6*m)
line(d+500, (6*m)-(s/2), d+500, 6*m)
line(d+1000, (6*m)-(s/2), d+1000, 6*m)
line(d+affc.characters.length, (6*m)-(s/2), d+affc.characters.length, 6*m)
}
text() {
textSize(12);
textAlign(LEFT, CENTER);
textStyle(BOLD);
noStroke();
fill(textcolor);
text("Scale", d, (6*m)+(s/1.5));
text("0", d+(s/3), (6*m)-(s/3));
text("500", d+(s/3)+500, (6*m)-(s/3));
text("1000", d+(s/3)+1000, (6*m)-(s/3));
text([affc.characters.length], d+(s/3)+(affc.characters.length), (6*m)-(s/3));
}
}