2个不稳定版本
0.3.0 | 2023年4月23日 |
---|---|
0.2.0 | 2022年9月10日 |
#204 in #脚本语言
在 2 个crate中使用 (通过 libgcad)
6KB
91 行
GCad
警告:工作进度中 (WIP)
一个受OpenSCAD启发的脚本语言,用于制作快速且简单的CNC程序。想要快速制作一组倒角孔?以下是一个示例
board_thickness = 12.2mm;
board_height = 812.5mm - 6.35mm/2;
board_width = 5in;
cutter_diameter(6.35mm);
material('BALTIC_BIRCH_PLYWOOD');
comment('Holes for threaded inserts for ceiling brackets');
for y in linspace(1.5in, board_height - 1.5in, 2) {
for x in linspace(3/4in, 3.25in, 2) {
comment('Counterbore');
circle_pocket(x, y, radius=6.35mm, depth=3mm);
comment('Threaded insert hole');
circle_pocket(x, y, radius=4.75mm, depth=board_thickness);
}
}
// Hole which the LED strip wires pass through
material('ALUMINUM');
comment('LED strip wire hole');
drill(groove_x + groove_width / 2, board_height - 1mm, board_thickness);
然后: gcad -o output.nc input.gcad
完成!
依赖项
~1.5MB
~35K SLoC