Hey, I'm using pyGame and I want to:
A) make a function that returns the angle between two points. I've tried doing this with math.atan2 and I'm getting really wierd returns. I tried this with both (delta X, deltaY) and (deltaY, deltaX). Any suggestions?
B) given a length and an angle, return a point using those two from 0. For example, LengthDir(2,45) using (length,angle) would return (2,2).
Thanks for the help. I've searched all over the internet and I couldn't find anything to help me...
(2, 2)isn't2, it's2*sqrt(2). – Nikita Rybak Feb 5 '11 at 19:16LengthDir(2, 45)return the point(sqrt(2), sqrt(2))? – sth Feb 5 '11 at 19:162^0.5, which is length of vector(1, 1). No? – Nikita Rybak Feb 5 '11 at 20:20