Skip to content
Snippets Groups Projects
shapes.js 181 B
Newer Older
Yuriy Maksymets's avatar
Yuriy Maksymets committed
function recognizeFromPoints(points) {
  return {
    shape: Shapes.rectangle,
    points,
  }
}

export const Shapes = {
  rectangle: "rect",
}

export default recognizeFromPoints