OISEAU
A modern DGTD framework
Loading...
Searching...
No Matches
triplot.hpp
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#pragma once
8
9#include "oiseau/mesh/mesh.hpp"
10#include "oiseau/plotting/pyplot.hpp"
11
12namespace oiseau::plotting {
13void triplot(plt::AxesSubPlot &ax, oiseau::mesh::Mesh &mesh);
14}