Skip to content
Snippets Groups Projects
Select Git revision
  • 9a387c8b440c2ee2e7b85b9310ab5195dc3c7f19
  • master default protected
2 results

plugins.config

Blame
  • line_segments.hpp 335 B
    
    #ifndef LIBRARY_PHX_LINE_SEGMENTS_HPP_
    #define LIBRARY_PHX_LINE_SEGMENTS_HPP_
    
    #include <vector>
    #include <glm/glm.hpp>
    
    namespace phx {
    
    	struct line_segments
    	{
    		std::vector<glm::vec3>     vertices;
    		std::vector<glm::u8vec4>   colors;
    		std::vector<std::uint32_t> indices;
    		float                      radius = 1.0f;
    
    	};
    }
    #endif