// Components
import { Path } from '../pattern/path.mjs'
import { getProps, getId } from '../pattern/utils.mjs'
const coords = (point) => `${point.x},${point.y}`
const Cp = ({ at }) => (
)
const Xray = ({ stackName, pathName, path, t, inspector }) => {
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,
inspector,
}) => (
<>
>
)