7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-06 17:05:31 +00:00
kicad/pcbnew/exporters
Seth Hillbrand 5e0abadb23 Reorganize layer numbering
F_Cu = 0
B_Cu = 2
Remaining internal copper layers are even and incrementing

Non-copper layers are odd and incrementing.

This means that we can no longer do things like:
for( PCB_LAYER_ID layer = F_Cu; layer <= B_Cu; ++layer)
Instead, we have the class LAYER_RANGE:
for( PCB_LAYER_ID layer : LAYER_RANGE( F_Cu, B_Cu) )

Similarly, gt/lt tests should not refer to the integer value of the
layer.  We have functions such as IsCopperLayer to test whether a layer
is copper or not.

When using the connectivity RTree, the third dimension is layer, so we
provide B_Cu with the special INT_MAX value, ensuring that elements
between F_Cu and B_Cu will be identified.  There is a new, special
function GetBoardLayer() for interfacing with CN_ITEMS

Similarly, PNS layers remain unchanged and sequential.  A set of
interface functions is provided to map PNS layers to Board layers and
back.  This allows the PNS_LAYER_RANGE to function as expected
2024-09-06 23:07:58 +00:00
..
step wip 2024-08-31 11:38:51 +02:00
board_exporter_base.h Remove basic masking class map_string_utf8 2024-08-19 11:51:13 -07:00
export_d356.cpp Reorganize layer numbering 2024-09-06 23:07:58 +00:00
export_d356.h Naming conventions. 2020-11-16 00:04:55 +00:00
export_footprint_associations.cpp Kick the wildcards and file exts into a static class, export it from kicommon 2023-12-27 21:10:01 -05:00
export_gencad_writer.cpp Reorganize layer numbering 2024-09-06 23:07:58 +00:00
export_gencad_writer.h export gencad: clean and update old code. Should not really change the export. 2023-10-27 20:03:12 +02:00
export_gencad.cpp export gencad: clean and update old code. Should not really change the export. 2023-10-27 20:03:12 +02:00
export_hyperlynx.cpp More build time optimizations. 2024-05-06 04:39:28 +03:00
export_idf.cpp Add ability to embed files in various elements 2024-07-15 16:06:55 -07:00
export_svg.cpp Reorganize layer numbering 2024-09-06 23:07:58 +00:00
export_svg.h ADDED: plotting options for DNP footprints 2024-08-18 10:02:14 -06:00
export_vrml.h VRML: add options to exclude DNP/unspecified types like STEP exporter 2024-03-04 10:10:34 -05:00
exporter_vrml.cpp Add ability to embed files in various elements 2024-07-15 16:06:55 -07:00
exporter_vrml.h VRML: add options to exclude DNP/unspecified types like STEP exporter 2024-03-04 10:10:34 -05:00
gen_drill_report_files.cpp Reorganize layer numbering 2024-09-06 23:07:58 +00:00
gendrill_Excellon_writer.cpp Kick the wildcards and file exts into a static class, export it from kicommon 2023-12-27 21:10:01 -05:00
gendrill_Excellon_writer.h Fix gerbers and drill plot not logging errors 2023-04-20 23:39:59 -04:00
gendrill_file_writer_base.cpp Start unifying padstack properties 2024-05-14 20:57:56 -04:00
gendrill_file_writer_base.h Fix gerbers and drill plot not logging errors 2023-04-20 23:39:59 -04:00
gendrill_gerber_writer.cpp Gerbview settings: store option "Page Limits" in gerbview config. 2024-02-14 11:21:55 +01:00
gendrill_gerber_writer.h Fix gerbers and drill plot not logging errors 2023-04-20 23:39:59 -04:00
gerber_jobfile_writer.cpp Reorganize layer numbering 2024-09-06 23:07:58 +00:00
gerber_jobfile_writer.h Remove unneeded headers from pcbnew_scripting_helpers.h 2023-05-31 15:54:46 -07:00
gerber_placefile_writer.cpp Reorganize layer numbering 2024-09-06 23:07:58 +00:00
gerber_placefile_writer.h gerber_placefile_writer: fix angle rotation for flipped footprints. 2022-05-16 10:24:13 +02:00
place_file_exporter.cpp Explicit control over hidden text in bounding boxes. 2024-05-06 21:36:19 +01:00
place_file_exporter.h ADDED: DNP flag for position file export 2023-08-04 11:02:54 -07:00