#ifndef IGL_PLOT_VECTOR_H #define IGL_PLOT_VECTOR_H #include "igl_inline.h" #include namespace igl { // Not clear what these are supposed to be doing. Currently they print // vectors to standard error... template IGL_INLINE void plot_vector( std::vector& v); template IGL_INLINE void plot_vector( std::vector< std::vector >& v); template IGL_INLINE void plot_vector(std::vector< std::vector< std::vector > >& v); } #ifdef IGL_HEADER_ONLY # include "plot_vector.cpp" #endif #endif