I have been trying to learn box2d through the boxwrap2d tutorials by philho here:
http://processing.org/discourse/yabb2/YaBB.pl?num=1247034244
In my code I have run some of the basic examples ie. swinging chain, so processing is finding the library without a problem.
import org.jbox2d.collision.*;
however this line (below) still returns an error saying "Cannot find a class or type named "org.jbox2d.collision.Shape"
org.jbox2d.collision.Shape[] shapes = world.query(aabb, 10);
Any ideas on why this is happening/how to fix it?
Thanks
1