Open main menu

CDOT Wiki β

Changes

FSOSS 2010/processing.js/example7

509 bytes added, 11:57, 26 October 2010
Created page with 'category:FSOSS 2010 PJS Examples <source lang="JavaScript"> void setup() { size(400, 100); background(255); for (int i = 10; i < 350; i = i + 50) { cleanHouse(i,…'
[[category:FSOSS 2010 PJS Examples]]

<source lang="JavaScript">
void setup()
{
size(400, 100);
background(255);
for (int i = 10; i < 350; i = i + 50)
{
cleanHouse(i, 20);
}
}

void messyHouse(int x, int y)
{
triangle(x + 15, y, x, y + 15, x + 30, y + 15);
rect(x, y + 15, 30, 30);
rect(x + 12, y + 30, 10, 15);
}

void cleanHouse(int x, int y)
{
pushMatrix();
translate(x, y);
triangle(15, 0, 0, 15, 30, 15);
rect(0, 15, 30, 30);
rect(12, 30, 10, 15);
popMatrix();
}
</source>
1
edit