Is it possible to move with integers

Is something like this possible, or am I just dumb?

image

javascript always stores numbers as double float. So internally it’s always double float.
If you only assign whole numbers to it, it will be a whole number. So no problem to translate by (1, 0, 0).

So just find a way to round the position of everything to an integer? Alright.

I was trying to do something like vertex snapping without rounding but oh well its fine.