src/inputvertices.h

Mon, 04 Jul 2022 00:19:18 +0300

author
Teemu Piippo <teemu.s.piippo@gmail.com>
date
Mon, 04 Jul 2022 00:19:18 +0300
changeset 329
6d75fa09cc0c
parent 322
a39f454a3d7f
permissions
-rw-r--r--

fix some issues like subfile references not showing up properly

#pragma once
#include "src/basics.h"

class InputVertices
{
	std::vector<glm::vec3> polygon = {origin};
	std::size_t numpoints = 1;
public:
	bool currentPointOnExistingPoint() const;
	std::size_t calcNumPoints() const;
	void updateCurrentPoint(const glm::vec3& p);
	void removeLastPoint();
	void finishCurrentPoint();
	void clear();
	const glm::vec3& operator[](std::size_t i) const
	{
		return this->polygon[i];
	}
	std::size_t bufferSize() const
	{
		return this->polygon.size();
	}
	std::size_t polygonSize() const
	{
		return this->numpoints;
	}
	auto begin() const
	{
		return std::begin(this->polygon);
	}
	auto end() const
	{
		return std::end(this->polygon);
	}
	auto polygonEnd() const
	{
		return std::begin(this->polygon) + static_cast<long int>(this->numpoints);
	}
};

mercurial