Minim from eclipse
in
Integration and Hardware
•
1 year ago
Hi,
I programmed a sketch that uses Minim with the processing IDE. Everything is working fine.
I'm now planning to improve it, and moved to Eclipse. I configured the build path to include minim.jar. All the imports seem to work fine. But I can't compile the project because I get the following error when I try to instatiate Minim:
- The constructor Minim(PApplet) is undefined
I first declare the instance variable and initialize it later, so the problem is with the constructor call for sure. What I don't get is that the same code works in the processing IDE but not in Eclipse.
- import processing.core.*;
- import ddf.minim.*;
- import ddf.minim.signals.*;
- import ddf.minim.analysis.*;
- import ddf.minim.effects.*;
- public class MinimTest extends PApplet {
- Minim minim;
- public void setup() {
- minim = new Minim(this); // error in this line
- }
- }
I don't have a clue on what is going on. Any pointers will be very much appreciated.
Cheers
1