

class spring{
   
   int from;
   int to;      // who do I connect?
   float kspr;    // k spring constant
   float dist;    // rest length
   
   spring(){
     from = to = -1;
   }
   
   
   
}
