TU-Programmieren_2/exercise4/task3.hpp
2025-04-09 10:22:44 +02:00

17 lines
475 B
C++

/// @file
/// @brief Task3: function declarations
#pragma once
#include <filesystem> // std::filesystem::path
namespace task3 {
/// @brief Renders an SVG image
/// @param filepath Filename of the produced SVG-Image
/// @return Total number of geometric primitives (Bbox, Circle, Triangle) plotted
/// @note the content of the image is not restricted, but you need to plot at least 20 primitives
int render_something(std::filesystem::path filepath);
} // namespace task3