Installing BSpace:
BSpace is an external library for Processing. Follow these three steps
to use it in your project:
1) Locate your project folder by choosing ‘Show Sketch Folder’
from the ‘Sketch’ menu (or by simply navigating there with
the finder/explorer).
2) Create a sub-folder in your project folder, name it 'code'.
3) Place the latest BSpace.class file
in the 'code' folder.
Versions:
BSpace.class V3 03/05/04 Bugs
Fixed (see list below).
BSpace.class V2 03/02/04 BSpace for Processing 68.
BSpace.class V1 --/--/03 BSpace for Processing 56.
Latest changes for V3:
On the site:
- All mentions of the constructor commands changed
to: s1 = new BSpace(this);
- All mentions of OBJECT/WORLD changed to BSpace.OBJECT
/ BSpace.WORLD
BSpace:
- Nesting applied during construction used to
be:
bspaceObj2 = new
BSpace(this, bspaceObj1);
and now...
bspaceObj2 = new
BSpace(bspaceObj1);
|