#ifndef IGL_PLOT_VECTOR_H #define IGL_PLOT_VECTOR_H #include namespace igl { // Not clear what these are supposed to be doing. Currently they print // vectors to standard error... template inline void plot_vector( std::vector& v); template inline void plot_vector( std::vector< std::vector >& v); template inline void plot_vector( std::vector< std::vector< std::vector > >& v); } // Implementation template inline void igl::plot_vector( std::vector& v) { for (int i=0; i inline void igl::plot_vector( std::vector< std::vector >& v) { for (int i=0; i inline void igl::plot_vector( std::vector< std::vector< std::vector > >& v) { for (int m=0; m