Skip to content

Instantly share code, notes, and snippets.

@mrflip
mrflip / Ancient Greek Geometry.md
Last active August 23, 2023 13:28
Ancient Greek Geometry walkthrough / answers / cheats
function avgRGB() {
var args = arguments;
var total = [0,0,0];
for (i=0; i<args.length; i++) {
total[0] += args[i][0];
total[1] += args[i][1];
total[2] += args[i][2];
}