Add catalog structure and grid of appropriate dimensions

This commit is contained in:
s450026 2020-04-02 20:37:21 +02:00
parent 6a034ee8d7
commit c6bdef1aff

View File

@ -2,17 +2,17 @@ import sys
import pygame
pygame.init()
screen = pygame.display.set_mode((960, 720))
screen = pygame.display.set_mode((700, 750))
done = False
block_size = 60
block_size = 50
WHITE = (255, 255, 255)
BLUE = (0, 0, 255)
screen.fill(WHITE)
def main():
for y in range(400):
for x in range(300):
for y in range(15):
for x in range(14):
rect = pygame.Rect(x * block_size, y * block_size, block_size - 1, block_size - 1)
pygame.draw.rect(screen, BLUE, rect)