tile_centering.py 248 B

12345678910
  1. #!/usr/bin/python3
  2. # Helper to center nodes on grid cells
  3. # Execute with python 3 and give coordinates to be adjusted
  4. while(True):
  5. x = int(float(input("coordinate :")))
  6. x = (x // 64) * 64 + 32
  7. print("> fixed :", x)
  8. print("- - -")