Browse Source

Added another arc() test from MDC

v1.x
Tj Holowaychuk 14 years ago
parent
commit
e5a3b86ed0
  1. 22
      test/public/tests.js

22
test/public/tests.js

@ -42,6 +42,28 @@ tests['arc()'] = function(ctx){
ctx.stroke();
};
tests['arc() 2'] = function(ctx){
for(var i=0;i<4;i++){
for(var j=0;j<3;j++){
ctx.beginPath();
var x = 25+j*50; // x coordinate
var y = 25+i*50; // y coordinate
var radius = 20; // Arc radius
var startAngle = 0; // Starting point on circle
var endAngle = Math.PI+(Math.PI*j)/2; // End point on circle
var anticlockwise = i%2==0 ? false : true; // clockwise or anticlockwise
ctx.arc(x,y,radius,startAngle,endAngle, anticlockwise);
if (i>1){
ctx.fill();
} else {
ctx.stroke();
}
}
}
};
tests['bezierCurveTo()'] = function(ctx){
ctx.beginPath();
ctx.moveTo(75,40);

Loading…
Cancel
Save