noFill

noFill( )

Description
Set the color of graphics or text to nothing

Syntax
noFill() 

Usages
noFill();    // no color


Examples in arduino

#include "AppGosu.h"
AppGosu app;

void  setup() {
     app.start();
     app.clearAll();



     
     app.background(70, 120, 60);
     app.rect(100,100,50, 50);     
     app.noFill();
     app.rect(130,130,50, 50);

}

void loop() {

}


Examples in other MCU 


printf("noFill();");
















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

No comments: