10 lines
396 B
OpenSCAD
10 lines
396 B
OpenSCAD
// Stationschip — Ø40 x 2 mm Vollscheibe (1:1 aus stationschip.svg).
|
|
// Liegt in der Chip-Mulde (Ø50) der Boards; das Avery-Rundetikett (puck-etiketten.csv)
|
|
// wird oben aufgeklebt. Aufruf: use <stationschip-common.scad> chip("#2f80c9");
|
|
|
|
chip_d = 40; // Ø40 (aus SVG: 40 mm)
|
|
chip_h = 2; // Hoehe 2 mm
|
|
|
|
module chip(col) {
|
|
color(col) cylinder(d = chip_d, h = chip_h, $fn = 200);
|
|
}
|