From a126b9712fb69181112eaeec2a7c02d3125706fa Mon Sep 17 00:00:00 2001 From: Daniel Shiffman Date: Mon, 22 Jun 2015 21:39:12 +0100 Subject: [PATCH] fix size --- .../NOC_9_04_Faces_interactiveselection.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chp9_ga/NOC_9_04_Faces_interactiveselection/NOC_9_04_Faces_interactiveselection.pde b/chp9_ga/NOC_9_04_Faces_interactiveselection/NOC_9_04_Faces_interactiveselection.pde index c4552f28..e8554580 100644 --- a/chp9_ga/NOC_9_04_Faces_interactiveselection/NOC_9_04_Faces_interactiveselection.pde +++ b/chp9_ga/NOC_9_04_Faces_interactiveselection/NOC_9_04_Faces_interactiveselection.pde @@ -9,7 +9,7 @@ Population population; Button button; void setup() { - size(640,360); + size(800,200); colorMode(RGB,1.0); int popmax = 10; float mutationRate = 0.05; // A pretty high mutation rate here, our population is rather small we need to enforce variety