From 48c193853c0a996d81d72c7bd861d6cdbfbc4103 Mon Sep 17 00:00:00 2001 From: caminsha Date: Sun, 1 Mar 2020 22:43:30 +0100 Subject: Changed color value in background function Changed it because we defined the color white as c before. --- processing.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'processing.html.markdown') diff --git a/processing.html.markdown b/processing.html.markdown index d7b0d600..dbf078a2 100644 --- a/processing.html.markdown +++ b/processing.html.markdown @@ -356,7 +356,7 @@ color c = color(255, 255, 255); // WHITE! // By default, Processing uses RGB colour scheme but it can be configured to // HSB using colorMode(). Read more here: // (https://processing.org/reference/colorMode_.html) -background(color); // By now, the background colour should be white. +background(c); // By now, the background colour should be white. // You can use fill() function to select the colour for filling the shapes. // It has to be configured before you start drawing shapes so the colours gets // applied. -- cgit v1.2.3