vtm/quelldatein/helfer/mathematik.ts

24 lines
324 B
TypeScript
Raw Normal View History

2017-11-08 15:05:06 +01:00
module mod_vtm_helfer
{
/**
* @author kcf <vidofnir@folksprak.org>
*/
export function div(x : int, y : int) : int
{
return Math.floor(x/y);
}
/**
* @author kcf <vidofnir@folksprak.org>
*/
export function mod(x : int, y : int) : int
{
return (x - (y * div(x, y)));
}
}