ellipse

ellipse( )

Description
Draws a ellipse

Syntax
ellipse(x, y, w, h

Parameters
  x : x-coordinate
  y : y-coordinate

  w : width
  h : height


Usages

ellipse(200, 200, 100, 200)



Examples in arduino

#include "AppGosu.h"
AppGosu app;


void  setup() {

     app.start();
     app.clearAll();


     app.fill(250, 170, 50);
     app.ellipse(200, 200, 100, 200);

}

void loop() {


}



Examples in other MCU

printf("ellipse(200, 200, 100, 200);");



















from AppGosu
-----------------------------------------

No comments: