todos.txt 1.5 KB

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