RE: [pygame] bug in pygame.math.Vector2 vector2_rotate_helper

2014-11-03 Thread nick komsa
UNSUBSCRIBE > Date: Mon, 3 Nov 2014 01:11:37 + > From: d...@amberfisharts.com > To: pygame-users@seul.org > Subject: Re: [pygame] bug in pygame.math.Vector2 vector2_rotate_helper > > The Bug is now fixed on bitbucket (issue 214). > It occurred when you pass an angle of

Re: [pygame] bug in pygame.math.Vector2 vector2_rotate_helper

2014-11-02 Thread Lorenz Quack
The Bug is now fixed on bitbucket (issue 214). It occurred when you pass an angle of between (360-Vector2().epsilon) and 360. I hope you can compile pygame your self or work around this bug or wait for the next release. Again, thanks for reporting! Cheers, Lorenz On 03/11/14 00:23, Lorenz Qu

Re: [pygame] bug in pygame.math.Vector2 vector2_rotate_helper

2014-11-02 Thread Lorenz Quack
I'll look into it. Thanks for reporting! On 03/11/14 00:15, Павел Швец wrote: Hello, i've got a bug in Pygame code and the error message tells me to report it here :) Code: import pygame vector = pygame.math.Vector2(0, 1) angle = 0 try: while True: vector.rotate(angle) angle += 1.2 except