#ifndef PerPixelMesh_HPP #define PerPixelMesh_HPP #include struct PixelPoint { float x; float y; PixelPoint(float x, float y); }; struct PerPixelContext { float x; float y; float rad; float theta; int i; int j; PerPixelContext(float x, float y, float rad, float theta, int i, int j); }; class PerPixelMesh { public: int width; int height; int size; std::vector p; std::vector p_original; std::vector identity; PerPixelMesh(int width, int height); void Reset(); }; #endif