CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
EmptyShape.hpp
Go to the documentation of this file.
1//
2// CeresEngine - A game development framework
3//
4// Created by Rogiel Sulzbach.
5// Copyright (c) 2018-2022 Rogiel Sulzbach. All rights reserved.
6//
7
8#pragma once
9
10#include "Edge.hpp"
11#include "ShapeVertex.hpp"
12
14
16 class EmptyShape {
17 public:
18 class Edges {
19 public:
20 [[nodiscard]] Edge generate() const;
22 void next();
23
24 private:
27 };
28
39
42 };
43
44} // namespace CeresEngine::MeshGenerator
Definition Edge.hpp:14
Empty shape with zero vertices and edges.
Definition EmptyShape.hpp:16
Vertices vertices() const noexcept
A point on a path.
Definition ShapeVertex.hpp:16
Definition AnyGenerator.hpp:12
constexpr size_t hash(const T &v)
Generates a hash for the provided type.
Definition Hash.hpp:25