25 BOTTOM_SILKSCREEN = -120,
27 BOTTOM_PACKAGE = -140,
28 BOTTOM_ASSEMBLY = -150,
29 BOTTOM_COURTYARD = -160,
33 static bool is_copper(
int l)
35 return l <= TOP_COPPER && l >= BOTTOM_COPPER;
38 static bool is_silkscreen(
int l)
40 return l == TOP_SILKSCREEN || l == BOTTOM_SILKSCREEN;
43 static const unsigned int max_inner_layers;
45 static std::string get_layer_name(
int l);
46 static const std::vector<int> &get_layers();
Definition: board_layers.hpp:6