Fix the minimap.

This commit is contained in:
bʰedoh₂ swé 2024-04-04 22:02:44 +05:00
parent 4c7572208a
commit 4d7a95545b

View File

@ -133,9 +133,11 @@ def mainLoop():
display.blit(cPos_surf, (0, fps_surf.get_height())) display.blit(cPos_surf, (0, fps_surf.get_height()))
display.blit(cRot_surf, (0, fps_surf.get_height() + fontSize)) display.blit(cRot_surf, (0, fps_surf.get_height() + fontSize))
for i in level: for i in level:
a = complex(Poincare2Klein(MobiusAdd(i.pointA,-gPlayer.cPos))) a = complex(Poincare2Klein(i.pointA))
b = complex(Poincare2Klein(MobiusAdd(i.pointB,-gPlayer.cPos))) 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))) 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() pygame.display.update()