您好,欢迎访问一九零五行业门户网

如何使用 FabricJS 设置圆的旋转角度?

在本教程中,我们将使用 fabricjs 设置圆的旋转角度。圆形是 fabricjs 提供的各种形状之一。为了创建一个圆圈,我们必须创建一个 fabric.circle 类的实例并将其添加到画布中。 fabricjs 中的 angle 属性定义了对象的 2d 旋转角度。我们还有 centeredrotation 属性,它允许我们使用圆的中心点作为变换的原点。
语法new fabric.circle({ angle: number, centeredrotation: boolean }: object)
参数选项(可选) - 此参数是一个对象 为我们的对象提供额外的定制。使用此参数,可以更改与圆相关的颜色、光标、描边宽度等属性,其中 angle 和 centeredrotation 是属性。 p>选项键角度 - 这个属性接受一个数字,它指定圆的旋转角度(以度为单位)。
centeredrotation - 此属性接受一个布尔值值,该值确定圆心是否是变换的原点。
示例 1将角度作为具有自定义值的键传递并禁用圆的居中旋转
以下示例演示了如何在 fabricjs 中设置圆的旋转角度。负角度指定逆时针方向,而正角度指定顺时针方向。由于我们已为 centeredrotation 指定了 false 值,因此圆将在使用其角点作为旋转中心的同时进行旋转。
<!doctype html><html> <head> <!-- adding the fabric js library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>set the angle of rotation of a circle using fabricjs</h2> <p>select the object and observe its controlling corners. you will notice that the angle of rotation is set at 60 degrees in the anti-clockwise direction, as we have set the <b>angle</b> at <b>-60</b>. </p> <canvas id="canvas"></canvas> <script> // initiate a canvas instance var canvas = new fabric.canvas("canvas"); var cir = new fabric.circle({ left: 215, top: 100, radius: 50, fill: "green", stroke: "blue", strokewidth: 2, angle: -60, centeredrotation: false, }); // adding it to the canvas canvas.add(cir); canvas.setwidth(document.body.scrollwidth); canvas.setheight(250); </script> </body></html>
示例2启用圆的居中旋转
从这个示例中我们可以看到,通过设置centeredrotation 属性为true,我们的圆现在使用其中心作为旋转中心。在版本 1.3.4 之前,centeredscaling 和 centeredrotation 包含在一个名为 centertransform 的属性中。
<!doctype html><html> <head> <!-- adding the fabric js library--> <script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/510/fabric.min.js"></script> </head> <body> <h2>set the angle of rotation of a circle using fabricjs</h2> <p>select the object and observe its controlling corners. here we have set the angle of rotation at 60 degrees in the anti-clockwise direction, and when you rotate the circle, it will rotate around its center, as we have set <b>centeredrotation</b> to true. </p> <canvas id="canvas"></canvas> <script> // initiate a canvas instance var canvas = new fabric.canvas("canvas"); var cir = new fabric.circle({ left: 215, top: 100, radius: 50, fill: "green", stroke: "blue", strokewidth: 2, angle: -60, centeredrotation: true, }); // adding it to the canvas canvas.add(cir); canvas.setwidth(document.body.scrollwidth); canvas.setheight(250); </script> </body></html>
以上就是如何使用 fabricjs 设置圆的旋转角度?的详细内容。
其它类似信息

推荐信息