Wildmeshing Toolkit
Loading...
Searching...
No Matches
AndOperationSequence.hpp
Go to the documentation of this file.
1#pragma once
2
4
5#include <wmtk/Tuple.hpp>
6
7
8namespace wmtk {
9class Mesh;
10
11namespace operations {
12
13
15{
16public:
18 Mesh& mesh,
19 const std::vector<std::shared_ptr<Operation>>& operations = {});
20
22
23protected:
24 std::vector<simplex::Simplex> execute_operations(const simplex::Simplex& simplex) override;
25};
26
27} // namespace operations
28} // namespace wmtk
std::vector< simplex::Simplex > execute_operations(const simplex::Simplex &simplex) override
const Mesh & mesh() const
Definition Operation.hpp:45