#pragma once #include "Vertex.hpp" namespace amalgine { class Triangle2D { public: Vertex2D p1; Vertex2D p2; Vertex2D p3; }; class Triangle3D { public: Vertex3D p1; Vertex3D p2; Vertex3D p3; }; }