Not really too sure how to categorize this, but is there an easy way to allow the processing application to make use of Windows native snap/maximize feature, or can this be programmed using a simple mouse-pressed function
1 Like
You could use surface.setResizable(true)
right after size()
in setup()
. This allows the sketch to be resized, including the windows snap features.
2 Likes