You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
2.8 KiB

  1. /*
  2. * This program source code file is part of KiCad, a free EDA CAD application.
  3. *
  4. * Copyright (C) 1992-2020 KiCad Developers, see AUTHORS.txt for contributors.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, you may find one here:
  18. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  19. * or you may search the http://www.gnu.org website for the version 2 license,
  20. * or you may write to the Free Software Foundation, Inc.,
  21. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  22. */
  23. #pragma once
  24. class PCB_SHAPE;
  25. class SHAPE_POLY_SET;
  26. class wxString;
  27. class wxPoint;
  28. typedef
  29. const std::function<void( const wxString& msg, BOARD_ITEM* itemA, BOARD_ITEM* itemB,
  30. const VECTOR2I& pt )> OUTLINE_ERROR_HANDLER;
  31. /**
  32. * Function ConvertOutlineToPolygon
  33. * build a polygon set (with holes) from a PCB_SHAPE list, which is expected to be one or more
  34. * top-level closed outlines, with zero or more holes in each. Optionally, it can be limited to
  35. * a single top-level closed outline.
  36. * @param aShapeList the initial list of drawsegments (only lines, circles and arcs).
  37. * @param aPolygons will contain the complex polygon.
  38. * @param aErrorMax is the max error distance when polygonizing a curve (internal units)
  39. * @param aChainingEpsilon is the max distance from one endPt to the next startPt (internal units)
  40. * @param aAllowDisjoint indicates multiple top-level outlines are allowed
  41. * @param aErrorHandler = an optional error handler
  42. */
  43. bool ConvertOutlineToPolygon( std::vector<PCB_SHAPE*>& aShapeList, SHAPE_POLY_SET& aPolygons,
  44. int aErrorMax, int aChainingEpsilon, bool aAllowDisjoint,
  45. OUTLINE_ERROR_HANDLER* aErrorHandler );
  46. /**
  47. * Extracts the board outlines and build a closed polygon from lines, arcs and circle items on
  48. * edge cut layer. Any closed outline inside the main outline is a hole. All contours should be
  49. * closed, i.e. are valid vertices for a closed polygon.
  50. * @return true if success, false if a contour is not valid
  51. */
  52. extern bool BuildBoardPolygonOutlines( BOARD* aBoard, SHAPE_POLY_SET& aOutlines,
  53. int aErrorMax, int aChainingEpsilon,
  54. OUTLINE_ERROR_HANDLER* aErrorHandler = nullptr );