#ifndef _FINCIDENT_H
#define _FINCIDENT_H
class LPMem {
public:
  Plane *vecs;
  float *work;
  int *perm;
  int *next;
  int *prev;
  float *fvecs;

  //this n should match whatever n you're going to call halfspaces_incident_axialboxes with.
  LPMem (int n = 4);
  ~LPMem ();
};
#endif
