"The package "wblut" does not exist." processing 2.0

edited October 2015 in Library Questions

Hi, probably a super common problem but I have been searching for a while now and haven't found a solution. Imported HE_Mesh 2014 via Add Library, running this code: http://www.openprocessing.org/sketch/62534 but still get the error message:

No library found for wblut.core.processing

No library found for wblut.hemesh.tools

No library found for wblut.hemesh.creators

No library found for wblut.hemesh.core

No library found for wblut.geom.core

Libraries must be installed in a folder named 'libraries' inside the 'sketchbook' folder.

What do I need to do?

Tagged:

Answers

  • Answer ✓

    That sketch was written in 2012 with an older version of HE Mesh

    If you delete these imports

    import wblut.core.processing.*;
    import wblut.hemesh.tools.*;
    import wblut.hemesh.creators.*;
    import wblut.hemesh.core.*;
    import wblut.geom.core.*;
    

    and add the new ones

    import wblut.math.*;
    import wblut.processing.*;
    import wblut.core.*;
    import wblut.hemesh.*;
    import wblut.geom.*;
    

    It will help but some of the methods in the library have changed so you are going to haveconvert thes to the updated library yourself.

  • Sweet, thanks!

Sign In or Register to comment.