feat(walls): player can create walls by pressing F2 #3

Merged
bedohswe merged 3 commits from n3tael/p3he:main into main 2024-04-04 17:06:22 +00:00
Showing only changes of commit 4604f8224c - Show all commits

View File

@ -151,9 +151,11 @@ def mainLoop():
display.blit(cPos_surf, (0, fps_surf.get_height()))
display.blit(cRot_surf, (0, fps_surf.get_height() + fontSize))
for i in level:
a = complex(Poincare2Klein(MobiusAdd(i.pointA,-gPlayer.cPos)))
b = complex(Poincare2Klein(MobiusAdd(i.pointB,-gPlayer.cPos)))
a = complex(Poincare2Klein(i.pointA))
b = complex(Poincare2Klein(i.pointB))
pygame.draw.line(display, WHITE, (a.real * 100 + 100, (a.imag * 100 + 200)), (b.real * 100 + 100, (b.imag * 100 + 200)))
c = complex(Poincare2Klein(gPlayer.cPos))
pygame.draw.rect(display, WHITE, (c.real * 100 + 95, (c.imag * 100 + 195), 10, 10))
pygame.display.update()