| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // Copyright (C) 2025 Tiago V. L. Amorim (@tiagovla) | ||
| 2 | // | ||
| 3 | // This file is part of oiseau (https://github.com/tiagovla/oiseau) | ||
| 4 | // | ||
| 5 | // SPDX-License-Identifier: GPL-3.0-or-later | ||
| 6 | |||
| 7 | #include "oiseau/mesh/mesh.hpp" | ||
| 8 | |||
| 9 | #include "oiseau/mesh/geometry.hpp" | ||
| 10 | #include "oiseau/mesh/topology.hpp" | ||
| 11 | |||
| 12 | using namespace oiseau::mesh; | ||
| 13 | |||
| 14 | 2 | Topology& Mesh::topology() { return _topology; } | |
| 15 | ✗ | const Topology& Mesh::topology() const { return _topology; } | |
| 16 | ✗ | Geometry& Mesh::geometry() { return _geometry; } | |
| 17 | ✗ | const Geometry& Mesh::geometry() const { return _geometry; } | |
| 18 |