#ifndef _OPTFXN_H__
#define _OPTFXN_H__

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

private:
  Float3 *_eqn;
  Sphere *_sphere;
};

#endif
