Can anyone tell me how to install the chatbot library, I have installed Eliza previously but the chatbot download does not seem to be in the library format.
I have written a program that builds a cube out of multiple boxes.
Another box impacts on the cube and causes the boxes to spread.
This code works fine as long as you don't move the camera but if I rotate the camera in any way while the box is impacting with the cube the boxes redraw in very strange places. If the camera is moved after the impact there is no problem.
I have tried OCD and PeasyCam but they both seem to have the same problem - is this a modelX problem?
import processing.opengl.*;
import peasy.*;
PeasyCam cam;
PVector v1,v2,v3;
//moving box position
float boxposition =-40;
//sets size of cube
int gridsize = 9;
//create array for cube
float[][]pntArray = new float[gridsize*gridsize*gridsize][3];