TODOs.txt 1009 B

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