Select Git revision
plugins.config
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