MCPcopy Index your code
hub / github.com/microsoft/SandDance / sin

Function sin

docs/app/js/sanddance-app.js:69444–69446  ·  view source on GitHub ↗
(radians4, result)

Source from the content-addressed store, hash-verified

69442 return map(radians2, (radians3)=>radians3 * RADIANS_TO_DEGREES, result);
69443}
69444function sin(radians4, result) {
69445 return map(radians4, (angle)=>Math.sin(angle), result);
69446}
69447function cos(radians5, result) {
69448 return map(radians5, (angle)=>Math.cos(angle), result);
69449}

Callers 1

haversinFunction · 0.70

Calls 1

mapFunction · 0.70

Tested by

no test coverage detected