Skip to content

Commit

Permalink
fixed randomized
Browse files Browse the repository at this point in the history
  • Loading branch information
jcponce committed Nov 20, 2023
1 parent 2ad3324 commit 9c6ffea
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions velfields/Dadras/dadras.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();

for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
Expand Down
1 change: 1 addition & 0 deletions velfields/Halvorsen/halvorsen.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/Lorenz84/lorenz84.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/Nose-Hoover-draft/nose-hoover.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i=points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/RabinovichFabrikant/rabinovichfabrikant.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/Rossler/rossler.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/Sprott/sprott.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/Tscus/tscus.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down
1 change: 1 addition & 0 deletions velfields/Wang-Sun/wangsun.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ function windowResized() {
}

function randomCurve() {
removeElements();
for (var i = points.length-1; i>=0; i-=1){
points.splice(i,1);
}
Expand Down

0 comments on commit 9c6ffea

Please sign in to comment.