diff options
Diffstat (limited to 'ui/builders/straight.h')
-rw-r--r-- | ui/builders/straight.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ui/builders/straight.h b/ui/builders/straight.h new file mode 100644 index 0000000..77847dd --- /dev/null +++ b/ui/builders/straight.h @@ -0,0 +1,15 @@ +#pragma once +#include "../editNetwork.h" + +class Network; +class GeoData; + +class BuilderStraight : public EditNetwork::Builder { + void render(const Shader &) const override; + std::string hint() const override; + void click(Network * network, const GeoData * geoData, const SDL_MouseButtonEvent & e, const Ray & ray) override; + + void create(Network * network, glm::vec3 p1, glm::vec3 p2) const; + + std::optional<glm::vec3> p1; +}; |