not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
355 B

/**
_enyo.canvas.Circle_ is a canvas control that draws a circle fitting the
parameters specified in the _bounds_ property.
*/
enyo.kind({
name: "enyo.canvas.Circle",
kind: enyo.canvas.Shape,
//* @protected
renderSelf: function(ctx) {
ctx.beginPath();
ctx.arc(this.bounds.l, this.bounds.t, this.bounds.w, 0, Math.PI*2);
this.draw(ctx);
}
});