windowResize()
EnvironmentDescription
Resizes the window to the specified dimensions.
Syntax
void windowResize(int w, int h)
Parameters
| Name | Type | Description |
|---|---|---|
| w | int | new width |
| h | int | new height |
Returns
voidRelated
Under the Hood
From Processing.h:
void windowResize(int w, int h);
Under the Hood
From Processing.cpp:
void PApplet::windowResize(int w,int h){size(w,h);}