getP2Coords: function()

in package/src/components/CanvasTable/FabricTable.js [68:75]


  getP2Coords: function (objects) {
    const x = objects.map((object) => object.aCoords.br.x)
    const y = objects.map((object) => object.aCoords.br.y)
    return {
      x: Math.max(...x),
      y: Math.max(...y)
    }
  },