size, width
in
Programming Questions
•
1 year ago
I try to open a window bigger than my monitor.
I set size width to 2200, but the window is no more than 1920, even as width=2200.
I need the full window, even if it doesn't fit on my monitor, cause I could still save it.
What's wrong with my code?
void setup() {
background(255);
int w=2200;
int h=500;
size(w,h);
print("size("+w+","+h+") >> size("+width+","+height+")");
noLoop();
}//setup()
background(255);
int w=2200;
int h=500;
size(w,h);
print("size("+w+","+h+") >> size("+width+","+height+")");
noLoop();
}//setup()
void draw() {
}//draw()
}//draw()
1