如何获取形状顶点的坐标而不是织物js中的CORNERS坐标?

时间:2016-07-20 10:18:25

标签: html5 canvas fabricjs

我尝试了以下代码,但是它给出了控制角的坐标而不是顶点的坐标,我想要点?

<!--fabric js function to get coordinates of active object-->
    function getCoords(oCoords) {
        return {
          tl: new fabric.Point(oCoords.tl.x, oCoords.tl.y),
          tr: new fabric.Point(oCoords.tr.x, oCoords.tr.y),
          bl: new fabric.Point(oCoords.bl.x, oCoords.bl.y),
          br: new fabric.Point(oCoords.br.x, oCoords.br.y)
        }
      }

0 个答案:

没有答案