From 67036d8d0ce0f80b996d148e39a0001e9d683eb6 Mon Sep 17 00:00:00 2001 From: martijnkunstman Date: Mon, 8 Jun 2020 08:30:06 +0200 Subject: [PATCH] tweak --- app.js | 4 ++-- app.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app.js b/app.js index f114298..8981b46 100644 --- a/app.js +++ b/app.js @@ -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(); diff --git a/app.ts b/app.ts index b0bbf7f..b896dc2 100644 --- a/app.ts +++ b/app.ts @@ -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() \ No newline at end of file