blob: 06183887f676d892d2ba394e33dd7b1fca44f18c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#pragma once
#include "modelFactoryMesh_fwd.h"
#include "mutation.h"
#include "persistence.h"
#include "shape.h"
#include "style.h"
#include <map>
#include <string>
class FaceController : public Mutation, public Style, public Persistence::Persistable {
public:
using FaceControllers = std::map<std::string, std::unique_ptr<FaceController>>;
void apply(ModelFactoryMesh & mesh, const Style::StyleStack & parents, const std::string & name,
Shape::CreatedFaces & faces) const;
std::string id;
std::string type;
bool smooth {false};
FaceControllers faceControllers;
private:
friend Persistence::SelectionPtrBase<std::unique_ptr<FaceController>, false>;
bool persist(Persistence::PersistenceStore & store) override;
std::string
getId() const override
{
return {};
};
};
|