// __SDEFILE__ - This file is a dependency for the stand-alone environment
// Components
import { Path } from '../pattern/path.mjs'
import { getProps } from '../pattern/utils.mjs'
const coords = (point) => `${point.x},${point.y}`
const Cp = ({ at }) => (
)
const Xray = ({ path }) => {
const output = []
let prev
let i = 0
for (const op of path.ops) {
if (op.type === 'curve') {
output.push(
,
,
)
}
prev = op
i++
}
output.push(
)
return output
}
export const PathXray = ({ stackName, pathName, part, path, settings, components, t }) => (
<>
>
)