We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a098bd7 commit 8cb31d0Copy full SHA for 8cb31d0
1 file changed
OpenBCI_GUI/W_HeadPlot.pde
@@ -324,7 +324,7 @@ class HeadPlot {
324
//initialize the image
325
for (int Iy=0; Iy < headImage.height; Iy++) {
326
for (int Ix = 0; Ix < headImage.width; Ix++) {
327
- headImage.set(Ix, Iy, color(0, 0, 0, 0));
+ headImage.set(Ix, Iy, OPENBCI_DARKBLUE);
328
}
329
330
@@ -992,7 +992,7 @@ class HeadPlot {
992
headImage.set(Ix, Iy, calcPixelColor(Ix, Iy));
993
} else { //negative values are outside of the head
994
//pixel is outside the head. set to black.
995
996
997
998
@@ -1007,7 +1007,7 @@ class HeadPlot {
1007
headImage.set(Ix, Iy, calcPixelColor(headVoltage[Ix][Iy]));
1008
1009
1010
1011
1012
1013
0 commit comments