linearly v0.32.0Docs


linearly v0.32.0 / vec3 / mod

Function: mod()

mod(a, b): vec3

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: vec3

b: number | vec3

Returns

vec3

See

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

Defined in

src/vec3.ts:237open in new window