IO 795 B

12345678910111213141516171819202122232425262728
  1. // This file is part of libigl, a simple c++ geometry processing library.
  2. //
  3. // Copyright (C) 2013 Alec Jacobson <alecjacobson@gmail.com>
  4. //
  5. // This Source Code Form is subject to the terms of the Mozilla Public License
  6. // v. 2.0. If a copy of the MPL was not distributed with this file, You can
  7. // obtain one at http://mozilla.org/MPL/2.0/.
  8. #ifndef IGL_IO
  9. #define IGL_IO
  10. // Input and output functions
  11. #include "read_triangle_mesh.h"
  12. #include "readDMAT.h"
  13. #include "readMESH.h"
  14. #include "readNODE.h"
  15. #include "readOBJ.h"
  16. #include "readOFF.h"
  17. #include "readTGF.h"
  18. #include "readWRL.h"
  19. #include "readCSV.h"
  20. #include "file_contents_as_string.h"
  21. #include "write_triangle_mesh.h"
  22. #include "writeDMAT.h"
  23. #include "writeMESH.h"
  24. #include "writeOBJ.h"
  25. #include "writeOFF.h"
  26. #include "writeTGF.h"
  27. #endif