todos.txt 1.4 KB

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