e gl Library - A simple c++ mesh library Copyright 2011 - Daniele Panozzo, Alec Jacobson, Olga Diamanti Interactive Geometry Lab - ETH Zurich This is a *header* library. Each header file should contain a single function. The function may have multiple prototypes. All functions should use the igl namespace and should adhere to the conventions and styles listed below. = Example = The following is a toy example of a function called example() in the file example.h: #ifndef IGL_EXAMPLE_H #define IGL_EXAMPLE_H namespace igl { // An example function that prints "Hello, world" inline void example(); } // Implementation #include inline void igl::example() { std::cout<<"Hello, world"<