In native mode (or sdl if I understand correctly), Box.fill .. (Box.v (Size.v 0.0 0.0) (Size.v 10.0 10.0)) will draw a box spanning pixels 0 to 10 included. If you do not want overlap between boxes, you then replace the 10s with 9s. However, in js mode, the code with 9s will leave blank pixels in between each box.
See pictures for clarification.
In native mode (or sdl if I understand correctly),
Box.fill .. (Box.v (Size.v 0.0 0.0) (Size.v 10.0 10.0))will draw a box spanning pixels 0 to 10 included. If you do not want overlap between boxes, you then replace the 10s with 9s. However, in js mode, the code with 9s will leave blank pixels in between each box.See pictures for clarification.