I am working with processing version 2.0b3 version and trying to use treeMappa library to create treemaps for my project. For installation purpose, I am following the instructions mentioned at the this
link. I have also installed gicenter Utilities and have access to them for sure since I can run their examples.
When I run a small example on the website for treeMappa, I keep getting the following error:-
No library found for org.gicentre.treemappa
Libraries must be installed in a folder named 'libraries' inside the 'sketchbook' folder.
I am not installing a library for the first time...I have done it a number of times before (successfully). But this is just giving me a hard time.
Here is the directory structure where the library files are.
~/Tools/processing-2.0b3/sketchbook/libraries/
drwxr-xr-x 5 4096 Aug 2 2011 gicentreUtils
drwxr-xr-x 6 4096 Aug 11 2011 Unfolding
-rw-r--r-- 1 1114 Oct 4 2011 INSTALL.txt
drwxr-xr-x 6 4096 Oct 4 2011 GLGraphics
drwxr-xr-x 6 4096 Nov 10 2011 gwoptics
drwxr-xr-x 6 4096 Feb 10 2012 geoMap
drwx------ 5 4096 Sep 19 11:04 OmicronAPI
drwx------ 6 4096 Sep 19 11:04 controlP5
drwxrwxr-x 6 4096 Oct 10 17:14 SQLibrary
drwxrwxr-x 5 4096 Oct 19 00:37 modestmaps
drwxr-xr-x 5 4096 Oct 29 13:38 treemap
drwxr-xr-x 5 4096 Oct 29 14:06 treeMappa
drwxrwxr-x 4 4096 Oct 29 14:15 __MACOSX
Does anyone have a clue as to what could be the problem? Does treeMappa work for the 2.0b3 version of processing or I am doing something really silly?
I am using processing 2.0 to create an application to display graphs and tabular data. I have created an applet and did a show(false) to keep it hidden.
I need to create a table in processing, of fixed rows and variable column. The data is available in array objects. This table will open from a button click in a different window.
What is the best way of doing it? I was thinking of rendering rectangles for each row in alternating colors and then adding field value using coordinates for each cell. This certainly seems a lot of processing. Can anyone suggest an easier option?