MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / linePath

Function linePath

freebuff/web/src/app/live/live-client.tsx:81–86  ·  view source on GitHub ↗
(
  from: { x: number; y: number },
  to: { x: number; y: number },
)

Source from the content-addressed store, hash-verified

79}
80
81function linePath(
82 from: { x: number; y: number },
83 to: { x: number; y: number },
84) {
85 return `M${from.x} ${from.y} L${to.x} ${to.y}`
86}
87
88const GRATICULE_LINES = [
89 ...[-120, -60, 0, 60, 120].map((lon) => ({

Callers 1

live-client.tsxFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected