Maze Builder Docs 6.0.1
Loading...
Searching...
No Matches
wavefront_object_helper.h
Go to the documentation of this file.
1#ifndef WAVEFRONT_OBJECT_HELPER
2#define WAVEFRONT_OBJECT_HELPER
3
4#include <memory>
5#include <string>
6#include <vector>
7#include <cstdint>
8
9namespace mazes {
10
11class maze;
12
14
18public:
19 // Default constructor
20 explicit wavefront_object_helper();
21
22 // Destructor
24
25 // Copy constructor
27
28 // Copy assignment operator
29 wavefront_object_helper& operator=(const wavefront_object_helper& other);
30
31 // Move constructor
32 wavefront_object_helper(wavefront_object_helper&& other) noexcept = default;
33
34 // Move assignment operator
35 wavefront_object_helper& operator=(wavefront_object_helper&& other) noexcept = default;
36
43 std::string to_wavefront_object_str(const std::unique_ptr<maze>& m,
44 const std::vector<std::tuple<int, int, int>>& vertices,
45 const std::vector<std::vector<std::uint32_t>>& faces) const noexcept;
46private:
48 class wavefront_object_helper_impl;
49 std::unique_ptr<wavefront_object_helper_impl> impl;
50};
51
52}
53
54#endif // WAVEFRONT_OBJECT_HELPER
Transform a maze into a Wavefront object string.
Definition wavefront_object_helper.h:17
std::string to_wavefront_object_str(const std::unique_ptr< maze > &m, const std::vector< std::tuple< int, int, int > > &vertices, const std::vector< std::vector< std::uint32_t > > &faces) const noexcept
Transform a maze into a Wavefront object string.
Namespace for the maze builder.
Definition algo_interface.h:9