Alternative for '%' in PAWN
#10

Alternative functions:

pawn Код:
stock Float:modulus(Float:a, Float:b)
{
    while(a > b)
        a -= b;
    return a;
}
pawn Код:
stock Float:modulus(Float:a, Float:b)
{
    return (((a/b)-floatround(a/b, floatround_floor))*b);
}
The second one is not very accurate.
Reply


Messages In This Thread
Alternative for '%' in PAWN - by Jochemd - 01.06.2012, 09:31
Re: Alternative for '%' in PAWN - by Vince - 01.06.2012, 09:40
Re: Alternative for '%' in PAWN - by Jochemd - 01.06.2012, 09:44
Re: Alternative for '%' in PAWN - by MP2 - 01.06.2012, 09:51
Re: Alternative for '%' in PAWN - by Vince - 01.06.2012, 09:58
Re: Alternative for '%' in PAWN - by Jochemd - 01.06.2012, 09:58
Re: Alternative for '%' in PAWN - by MP2 - 01.06.2012, 10:02
Re: Alternative for '%' in PAWN - by Jochemd - 01.06.2012, 10:04
Re: Alternative for '%' in PAWN - by MP2 - 01.06.2012, 10:06
Re: Alternative for '%' in PAWN - by MadeMan - 01.06.2012, 10:07
Re: Alternative for '%' in PAWN - by Vince - 01.06.2012, 10:29
Re: Alternative for '%' in PAWN - by Babul - 01.06.2012, 10:29
Re: Alternative for '%' in PAWN - by MadeMan - 01.06.2012, 10:36

Forum Jump:


Users browsing this thread: 1 Guest(s)