// tflorez class RigidBody { Particle parentParticle; ArrayList bodyParticles; ArrayList bodyVertices; RigidBody(Particle theParentParticle, Vector3f[] theBodyVertices) { this.parentParticle = theParentParticle; this.bodyVertices = new ArrayList(); this.bodyParticles = new ArrayList(); for (int i=0; i