Export your dots to PXON or SVG

DOTTER 16


      
tab to activate board and draw with keyboard holding h or v works while drawing
← left β†’ right d draw h draw horizontal line
↓ down ↑ up e erase v draw vertical line

(🚧 disable if slow)

⚠️ heads up this is just javascript

but also with extra functions available, like:

paint(x,y);
square(x1,y1,x2,y2);
horizontal(y);
vertical(x);

just replace x and y with coordinates.

bonus: all of these take color (string) as an optional parameter.

// try paint(0,1,"red"); below 
// or, submit the existing code ✨

for(i=0;i<16;i++){
  // multiply the hue each iteration. 20
  // keeps it under the max value for hsv()
  let color = "hsl("+ i*20 +",65%,70%)";
  horizontal(i, color);
};

      
Sample scripts

first, you must draw.

CONGRATS

You've made PXON.

The text below is editable. you'll find copy and download buttons above and to the right.

Adjust the scale of your pxon, if you'd like!