/* MDAL - Mesh Data Abstraction Library (MIT License) Copyright (C) 2018 Peter Petrik (zilolv at gmail dot com) */ #ifndef MDAL_DEFINES_HPP #define MDAL_DEFINES_HPP #include #include namespace MDAL { typedef struct { double x; double y; } Vertex; typedef std::vector Face; struct Mesh { std::vector vertices; std::vector faces; }; } // namespace MDAL #endif //MDAL_DEFINES_HPP