1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-26 17:54:52 +02:00
This commit is contained in:
Pomax
2020-08-30 23:06:34 -07:00
parent e6608d65af
commit 7cdc4217f5
24 changed files with 369 additions and 379 deletions

View File

@@ -48,8 +48,7 @@ draw() {
// panel 2: the current iteration step
nextPanel();
setStroke(`black`);
line(0,0,0,this.height);
this.drawIteration();
setFill(`black`);
let information = `Initial curves, threshold = ${this.epsilon}px`
@@ -64,8 +63,6 @@ draw() {
// panel 3: intersections
nextPanel();
setStroke(`black`);
line(0,0,0,this.height);
this.drawIntersections();
}