Wildmeshing Toolkit
Loading...
Searching...
No Matches
ConnectedComponent.hpp
1#pragma once
2
3#include <set>
4#include <wmtk/Types.hpp>
5
6namespace wmtk::components::image_simulation {
7
11using CellTag = std::set<int64_t>;
12
21{
22 std::vector<size_t> cells;
23 double volume = 0.0;
24 bool touches_boundary = false;
25};
26
27} // namespace wmtk::components::image_simulation
A collection of triangles (tets in 3D) that represent a connected component.
Definition ConnectedComponent.hpp:21