GSDP:GAM100/CProcessing/Run()

From Inside
< GSDP:GAM100‎ | CProcessing
Revision as of 09:17, 10 July 2019 by >Zachary.logsdon
Jump to: navigation, search

Description

This function is what runs your program for you. When you write setup() and draw() functions in your work space, then you call Run with the names of those functions to loop your program.


Setup will be called exactly once at the beginning of the program. Draw will be called once per frame for the life of the program.


The setup() and draw() functions must take no parameters and return nothing.

Example Usage

void init(void)
{
    /* Set the size of the window */
    size(500, 500);
}

void update(void)
{
    /* Set the background color to black every frame */
    background(color(0, 0, 0, 255));

    /* Draw a rectangle at the mouse position */
    rect(mouseX, mouseY, 50, 50);
}

int main(void)
{
    /* Run the program */
    Run(setup, draw);    
}


See Also

Personal tools
Namespaces

Variants
Actions
Navigation
NameSpaces:>
Tools
Dynamic:>