MCPcopy
hub / github.com/cpaczek/skylight / clamp

Function clamp

tracker/src/loop.ts:1182–1184  ·  view source on GitHub ↗
(v: number, lo: number, hi: number)

Source from the content-addressed store, hash-verified

1180}
1181
1182function clamp(v: number, lo: number, hi: number): number {
1183 return Math.min(hi, Math.max(lo, v));
1184}
1185
1186/** SFO airport reference point (the project's anchor airport). */
1187const SFO_ARP = { lat: 37.6213, lon: -122.379 };

Callers 3

tickMethod · 0.85
visionTickMethod · 0.85
feedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected