function recognizeFromPoints(points) {
  return {
    shape: Shapes.rectangle,
    points,
  }
}

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

export default recognizeFromPoints