Skip to content
Snippets Groups Projects
Select Git revision
  • f9ada3d1381875e72c41484b8d2ed7b64c447a26
  • main default protected
  • NewGraphicSystem
  • LayeredRendering
4 results

Plane.hpp

  • Théau's avatar
    BATON Theau authored
    ad9344f3
    History
    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;
        };
    }