$.shape.oval( x, y, w, h)

Draws an oval

  • x : number //
  • y : number //
  • w : number //
  • h : number //

Examples



function update() {
	$.shape.oval( 
		$.w/2,      // x position
		$.h/2,      // y position
		40,        // width 
		30         // height 
	);     
});