We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpIntegration › 144 problems with eclipse
Page Index Toggle Pages: 1
144 problems with eclipse (Read 482 times)
144 problems with eclipse
Aug 14th, 2008, 8:53pm
 
Since 144 I've got a java.lang.IncompatibleClassChangeError error when I'm using sin cos tan. Does someone know why?

Code:

package spidron;

import processing.core.*;
public class Test extends PApplet {

static public void main(String args[]) {
PApplet.main(new String[] { /* "--present", */"spidron.Test" });
}

public void setup() {
size(500, 500);
float x=sin(3);
}
}
Re: 144 problems with eclipse
Reply #1 - Aug 14th, 2008, 9:41pm
 
probably conflicting versions of the core.jar files in your eclipse classpath. so it's compiling against one, running against another.
Page Index Toggle Pages: 1