1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
// SPDX-License-Identifier: LGPL-3.0-or-later
// Author: Kristian Lytje
#include <plots/PlotLandscape.h>
#include <mini/detail/Landscape.h>
#include <mini/detail/Evaluation.h>
using namespace ausaxs::plots;
PlotLandscape::PlotLandscape(const mini::Landscape& data, const PlotOptions& options, const io::File& path) {
ss << "PlotLandscape\n"
<< data.to_string()
<< "\n"
<< options.to_string()
<< std::endl;
save(path);
}
PlotLandscape::~PlotLandscape() = default;
void PlotLandscape::quick_plot(const mini::Landscape& data, const PlotOptions& options, const io::File& path) {
PlotLandscape plot(data, options, path);
}
|