#include "bb.H"

#ifndef _CONSTRAINT_H__
#define _CONSTRAINT_H__

//
// Object
//
class Constraint {
  
public:
  Constraint        ();
  
public:
  int draw(float r, float g, float b, BB *bb);
  int setEqn(Float4 *eqn);

private:
  Float4 *_eqn;
};

#endif
