Reviving an old project

edited May 2015 in How To...

Hi,

I've been tasked with trying to compile an old Processing sketch and get it running again. I'm getting a few errors which I don't understand:

C:\Users\VERIRL\AppData\Local\Temp\HODSensorInterface.3717490156993294295temp\HODSensorInterface..java:18: error: The method noLoop() is undefined for the type HODSensorInterface noLoop(); ^^^^^^ C:\Users\VERIRL\AppData\Local\Temp\HODSensorInterface.3717490156993294295temp\HODSensorInterface..java:24: error: The method concat(String[], String[]) is undefined for the type HODSensorInterface PApplet.main(concat(appletArgs, passedArgs)); ^^^^^^

This is weird because neither noLoop() nor concat() appears in the source.

Any idea where that could be coming from?

Answers

  • are you using librarys?

  • Both noLoop() & concat() methods belong to PApplet.
    The latter is static and can be used directly as PApplet.concat().
    While the former demands a PApplet instance though.

Sign In or Register to comment.