Skip to content

Instantly share code, notes, and snippets.

@nezuppo
Last active February 23, 2019 11:36
Show Gist options
  • Save nezuppo/2f18615a6e4b204c65fbadeefebf2dc5 to your computer and use it in GitHub Desktop.
Save nezuppo/2f18615a6e4b204c65fbadeefebf2dc5 to your computer and use it in GitHub Desktop.
カメラ三脚の W 1/4 ナット用の穴のサイズを確認するための OpenSCAD スクリプト
module circle_txt(dia, trans_y) {
translate([0, 14 * trans_y])
circle(d=dia, $fn=6);
}
module test_nut_w14() {
linear_extrude(3)
difference() {
translate([0, 13.5])
square([20, 47], true);
circle_txt(11.0, 0);
circle_txt(11.5, 1);
circle_txt(12.0, 2);
}
}
test_nut_w14();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment