linearly v0.32.0Docs


linearly v0.32.0 / scalar / mod

Function: mod()

mod(a, b): number

Compute value of one parameter module another. This is computed as x - y * floor(x/y). Unlike JavaScript’s % operator, the sign of result always matches to b.

Parameters

a: number

b: number

Returns

number

See

https://thebookofshaders.com/glossary/?search=modopen in new window

Defined in

src/scalar.ts:96open in new window