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.

35 lines
1.0 KiB

  1. /*
  2. * Copyright (C) 2022 KiCad Developers, see AUTHORS.txt for contributors.
  3. *
  4. * This program is free software: you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation, either version 3 of the License, or (at your
  7. * option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along
  15. * with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef PLOTPRINT_H
  18. #define PLOTPRINT_H
  19. /**
  20. * Plots and prints can show holes in pads and vias
  21. * 3 options are available:
  22. * - no hole
  23. * - small holes with a fixed size
  24. * - holes using the actual size
  25. */
  26. enum class DRILL_MARKS
  27. {
  28. NO_DRILL_SHAPE,
  29. SMALL_DRILL_SHAPE,
  30. FULL_DRILL_SHAPE
  31. };
  32. #endif /* PLOTPRINT_H */