Metode arcTo() kanvas HTML

Referensi Kanvas HTML

Contoh

Buat busur antara dua garis singgung di kanvas:

Peramban Anda tidak mendukung kanvas HTML5.

JavaScript:

var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
ctx.beginPath();
ctx.moveTo(20, 20);           // Create a starting point
ctx.lineTo(100, 20);          // Create a horizontal line
ctx.arcTo(150, 20, 150, 70, 50); // Create an arc
ctx.lineTo(150, 120);         // Continue with vertical line
ctx.stroke();                // Draw it

Dukungan Peramban

Angka-angka dalam tabel menentukan versi browser pertama yang sepenuhnya mendukung metode ini.

Method
arcTo() Yes 9.0 Yes Yes No

Definisi dan Penggunaan

Metode arcTo() membuat busur/kurva antara dua garis singgung di kanvas.

Diagram arcto () kanvas

Tip: Gunakan metode stroke() untuk benar-benar menggambar busur di kanvas.

Sintaks JavaScript: konteks .arcTo( x1,y1,x2,y2,r );

Nilai Parameter

Parameter Description Play it
x1 The x-coordinate of the first tangent
y1 The y-coordinate of the first tangent
x2 The x-coordinate of the second tangent
y2 The y-coordinate of the second tangent
r The radius of the arc

Referensi Kanvas HTML