Solutions for Ancient Greek Geometry (https://sciencevsmagic.net/geo)
Most solutions taken from the about thread. See the comments below for more additions since my last check-in.
Most solutions taken from the about thread. See the comments below for more additions since my last check-in.
| 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]; | |
| } | |