8#ifndef GALAXY_GRAPHICS_SHAPES_POLYLINE_HPP_
9#define GALAXY_GRAPHICS_SHAPES_POLYLINE_HPP_
12#include "galaxy/meta/Memory.hpp"
57 const meta::vector<glm::vec2>&
points()
const;
An open looped line of points.
void create(const meta::vector< glm::vec2 > &points)
List of points to create a line from.
const meta::vector< glm::vec2 > & points() const
Get list of points.
Polyline & operator=(Polyline &&)
Move assignment operator.
virtual ~Polyline()
Destructor.
meta::vector< glm::vec2 > m_points
List of points.