class Particle { 
  float mass;;
  float bounceFactor = -1.0;
  final int NUM_SIDES = 10;
  final float K  = TWO_PI / NUM_SIDES; 
}

