visualizations

Programmatic visualizations
git clone git://git.laack.co/visualizations.git
Log | Files | Refs | README

vertex.hpp (268B)


      1 #pragma once
      2 
      3 #include <raylib.h>
      4 #include <string>
      5 
      6 class Vertex {
      7     public:
      8         Vertex(Vector2 position, float drawSize);
      9         Vector2 position;
     10         float drawSize;
     11         std::string toString();
     12         void render();
     13         bool visited = false;
     14 };