Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
stringz.h
Go to the documentation of this file.
1#ifndef STRINGZ_H
2#define STRINGZ_H
3
4#include <memory>
5#include <string>
6#include <vector>
7#include <cstdint>
8#include <tuple>
9
10namespace mazes {
11
12class maze;
13
15
19class stringz {
20public:
21
26 static void objectify(const std::unique_ptr<maze>& m,
27 std::vector<std::tuple<int, int, int, int>>& vertices,
28 std::vector<std::vector<std::uint32_t>>& faces) noexcept;
29
33 static std::string stringify(const std::unique_ptr<maze>& m) noexcept;
34
35}; // class
36} // namespace
37
38#endif // STRINGZ_H
String helper class.
Definition stringz.h:19
static void objectify(const std::unique_ptr< maze > &m, std::vector< std::tuple< int, int, int, int > > &vertices, std::vector< std::vector< std::uint32_t > > &faces) noexcept
Compute the 3D geometries of a maze.
static std::string stringify(const std::unique_ptr< maze > &m) noexcept
Convert a maze into a string representation.
Namespace for the maze builder.
Definition algo_interface.h:9