detect resize
              in 
             Programming Questions 
              •  
              1 year ago    
            
 
           
             With this it's possible to resize the window
            
            - void setup() {
- size(400, 400);
- frame.setResizable(true);
- }
- void draw(){
- line(0, 0, width, height);
- }
             However, the resize get's applied when you release the mouse. I would like that it also applies when dragging the mouse. Is that possible?
            
             
              
              1  
            
 
            
 
 
          