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