ตัวอย่าง แทคที่ใช้
ตัวอย่าง : วาดรูปทรงลิ่ม
var stage = new Kinetic.Stage({ container: 'container', width: 578, height: 200 }); var layer = new Kinetic.Layer(); var wedge = new Kinetic.Wedge({ x: stage.getWidth() / 2, // กำหนดแนวแกน x y: stage.getHeight() / 2, // กำหนดแนวแกน y radius: 70, // กำหนดรัศมี angleDeg: 60, // กำหนดมุม fill: 'red', // ใส่สีพื้น stroke: 'black', // กำหนดสีเส้น strokeWidth: 4, // กำหนดขนาดเส้น rotationDeg: -120 }); // add the shape to the layer layer.add(wedge); // add the layer to the stage stage.add(layer);
ผลลัพธ์ที่ได้คือ
0 comments:
Post a Comment