Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnkunstman committed Jun 8, 2020
1 parent accd375 commit 67036d8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ function convertArrayLenght(inputArray, length) {
var framerate = 30;
var personSize = 3;
var world = new World(700, 700, 0.005, framerate, personSize); // width, height, density, framerate, personSize
var infection = new Infection(35, 0.33, 7); // duration, mortality, reach
var mobility = new Mobility(1, 12); // speed, distance
var infection = new Infection(40, 0.33, 7); // duration, mortality, reach
var mobility = new Mobility(1, 13); // speed, distance
world.infection = infection;
world.mobility = mobility;
world.init();
4 changes: 2 additions & 2 deletions app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,8 +343,8 @@ function convertArrayLenght(inputArray: any, length: number): any {
let framerate: number = 30
let personSize: number = 3;
let world = new World(700, 700, 0.005, framerate, personSize) // width, height, density, framerate, personSize
let infection = new Infection(35, 0.33, 7) // duration, mortality, reach
let mobility = new Mobility(1, 12) // speed, distance
let infection = new Infection(40, 0.33, 7) // duration, mortality, reach
let mobility = new Mobility(1, 13) // speed, distance
world.infection = infection
world.mobility = mobility
world.init()

0 comments on commit 67036d8

Please sign in to comment.