Select Git revision
Plane.hpp

BATON Theau authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Plane.hpp 414 B
#pragma once
#include <engine/graphics/back/geometry/Geometry.hpp>
namespace megu {
class Plane : public Static_Geometry<Plane, QUADS, layout::FLAT, layout::TEXTURE> {
public:
inline static const Vertices_t & Vertices() {return Plane::_Vertices;}
inline static const size_t & Count() {return 4;}
private:
static Vertices_t _Vertices;
};
}