noStroke

noStroke( )

Description
Disables the color of outline and line

Syntax
noStroke() 

Usages
noStroke();    //nothing to draw

Examples in arduino

#include "AppGosu.h"
AppGosu app;

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

     app.background(70, 120, 60);      app.stroke(250, 170, 50);
     app.rect(100, 100, 50, 50);

     app.noStroke();
     app.rect(130, 130, 50, 50);

}
void loop() {

}


Examples in other MCU 


printf("noStroke();");













by  AppGosu
-------------------------------------------------------------------

No comments: