todos.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. - sort out `grad.*` vs `gradMat.*`
  2. - clean up externals
  3. - What's there for convenience?
  4. - What's there because it's patched/
  5. - compile on Linux, Mac OS X, Windows
  6. - unit tests for all functions
  7. - clean up examples
  8. - standardize use of string/char *, add to style conventions
  9. - standardize Eigen Templates, add to style conventions
  10. + standardize headers-only vs. static library
  11. - clean up tga.h
  12. + standardize igl includes #include "cotangent.h" or #include <cotangent.h>
  13. - implement an IGL_NO_OPENGL and IGL_NO_GLUT compiler option
  14. - clean up edgetopology.h
  15. + clean up mvc.h
  16. - clean up orth.h
  17. - clean up and rename pos.h
  18. - fix bugs in examples/Core/example2.cpp
  19. - replace generic names read.h/write.h with something like read_poly_mesh.h
  20. - replace DynamicSparseMatrix: coeffRef += ---> setFromTriplets()
  21. - create libigltga extra...why? license?
  22. - rename moveFV.h
  23. - is_border_vertex.h should not require V
  24. - consistent checks/asserts for: manifoldness, closedness, triangles-only
  25. e.g. check_mesh(V,F,IS_MANIFOLD | IS_CLOSED | IS_TRIANGLES_ONLY)
  26. - clean up Timer.h
  27. x svd.* depends on lapack, should use eigen...
  28. - use preprocessor macros to automatically include .cpp files at end of .h
  29. - unify include opengl with convenience includes
  30. - MatrixBase --> PlainObjectBase
  31. - min_quad_with_fixed should probably be a class
  32. - everywhere appropriate change:
  33. `#pragma omp parallel for` to `#pragma omp parallel for if (n>10000)` where
  34. `n` and `1000` are replaced accordingly
  35. + standardize name of library "libigl", purge IGL LIB, igl_lib, igl lib, IGL
  36. Library, etc.