meshutil.hpp 246 B

1234567891011
  1. #include <vector>
  2. #include "elt.hpp"
  3. namespace sphereRemap {
  4. void cptEltGeom(Elt& elt, const Coord &pole);
  5. void cptAllEltsGeom(Elt *elt, int N, const Coord &pole);
  6. void update_baryc(Elt *elt, int N);
  7. void computeGradients(Elt **elt, int N);
  8. }