Re: Calculation error - PHP not following math hierarchi ???

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 8/3/05, Rene Brehmer <piv@xxxxxxxxxxxxxx> wrote:
> I've run into a situation where PHP is way off when doing a relatively
> simple calculation of distance between two points in 2-dimensional space,
> where coordinates go from 1 to 300 in both X and Y directions. When passing
> 300, it goes back to 1, and vise-versa (it's for a game and is supposed to
> approximate the movement over a sphere).
> 
> Using this function:
> 
> function calc_distance($curX,$curY,$newX,$newY) {
>   // calculate distance to new location
>   $distX = abs($curX - $newX);
>   $distY = abs($curY - $newY);
> 
>   if ($distX <= 150 && $distY <= 150) {
>     $dist = sqrt($distX^2 + $distY^2);

I don't think you really want to do a bitwise xor there.

http://www.php.net/manual/en/language.operators.bitwise.php

Try pow() instead

http://www.php.net/manual/en/function.pow.php

-robin

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux