Horizon
tool_helper_plane.hpp
1#pragma once
2#include "core/tool.hpp"
3
4namespace horizon {
5class ToolHelperPlane : public virtual ToolBase {
6protected:
7 void plane_init(class Polygon &poly);
8 [[nodiscard]] bool plane_finish();
9
10private:
11 class Plane *plane = nullptr;
12};
13} // namespace horizon
Definition: plane.hpp:54
Polygon used in Padstack, Package and Board for specifying filled Regions.
Definition: polygon.hpp:25
Common interface for all Tools.
Definition: tool_pub.hpp:94
Definition: tool_helper_plane.hpp:5