to import. I get "cannot be resolved" when trying to import this library in
eclipse.
Having a sketch in eclipse, does this not work? I know running an example (Specifically the PolygonClipping example) in the processing IDE, the sketch and import work fine.
That should mean that the only jar file needed is toxiclibscore.jar if it works in the processing IDE.
I have that
toxiclibscore.jar added to my build path in eclipse, all other imports work, just can't seem to get this import to work.
Is this a known issue in eclipse? or am i missing another jar?
I need to use ToxiclibsSupport, and without this import I cant seem to get that work.
Hey does anyone know a way of exporting an FBX file from processing or could stear me towards some libraries?
I'm creating a 2D voronoi mesh, that I am triangulating. I then want to export that mesh as an FBX file. I've exported that image as an OBJ before, but now I'm looking at FBX, any ideas?
I'm looking to get each edge drawn as a single line, until the edges angle changes.
Is it just blobscanner or is this the way that all blob detection works?
The code below shows that the scanner goes top to bottom to find the edges of the shape so points are not in a proper order along the line, they bounce back and forth.
import Blobscanner.*;
PImage img;
Detector bd;
PVector[] edge;
int i;
void setup()
{
size(1800,900);
img = loadImage("NavMap1.png");
//img.filter(THRESHOLD);
bd = new Detector(this,0,0,img.width,img.height,255);
The method add(Object) in the type Set is not applicable for the arguments (void)
I was curious as to how I could either turn these coordinates into an object, or work around whats happening here and just plug the points into the set.