ReUseX  0.0.5
3D Point Cloud Processing for Building Reuse
Loading...
Searching...
No Matches
rhino.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 Povl Filip Sonne-Frederiksen
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5#pragma once
6#include "global-params.hpp"
7
8#include <CLI/CLI.hpp>
9#include <filesystem>
10#include <memory>
11
12namespace fs = std::filesystem;
13
15 fs::path path_out = fs::current_path() / "export.3dm";
16};
17
18void setup_subcommand_export_rhino(CLI::App &parent, std::shared_ptr<RuxOptions> global_opt);
void setup_subcommand_export_rhino(CLI::App &parent, std::shared_ptr< RuxOptions > global_opt)
int run_subcommand_export_rhino(SubcommandExportRhinoOptions const &opt, const RuxOptions &global_opt)
fs::path path_out
Output .3dm file.
Definition rhino.hpp:15