TODOs.txt 1.2 KB

1234567891011121314151617181920212223242526272829
  1. - data.lines, data.points should not concatenate colors with coordinates
  2. - snap to canonical recenters origin but trackball does not
  3. - rewrite in libigl style
  4. - separate various class into their own .h/.cpp pairs
  5. - remove use of double underscores (http://stackoverflow.com/a/224420/148668)
  6. - document inputs and outputs to all functions
  7. - document all member fields
  8. - document all classes
  9. - light direction is backwards
  10. - remove global variables (not threadsafe)
  11. - encapsulate (in igl namespace) and move static/global functions, use lambdas?
  12. - preface macros with "IGL_"
  13. - trackball mouseup captured by tweakbar
  14. - zoom with pan rather than scaling
  15. - refresh draw while resizing
  16. - use constructor initializer list rather than complicated constructor
  17. + snap to canonical view key shortcut is not working
  18. + resize TwBar with window
  19. + trackball should be able to drag over TwBar
  20. + don't zoom on horizontal scale
  21. + remove global `using namespace std`
  22. + remove `#define IGL_HEADER_ONLY`
  23. + guard `#undef max`
  24. + fix all -Wsign-compare
  25. + missing `#include <iostream>`
  26. + missing `#include <fstream>`
  27. + fix all -Wunused-but-set-variable
  28. + makefile for libiglviewer.a
  29. + Viewer.h should include Viewer.cpp