MCPcopy Create free account
hub / github.com/DjDeveloperr/deno_desktop / normalize

Method normalize

examples/extern/gmath.bundle.js:70–74  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

68 return new Rad(rem < 0 ? rem + Rad.turn : rem);
69 }
70 normalize() {
71 const rem = this.value % Rad.turn;
72 this.value = rem < 0 ? rem + Rad.turn : rem;
73 return this;
74 }
75 toRad() {
76 return this;
77 }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected