選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
398B

  1. $fn = $preview? 32 : 72;
  2. module marker(col) {
  3. translate([0,0,7]) {
  4. color(col) scale([4,4,14]) sphere(d=1);
  5. color(col) cylinder(h=15, d1=7,d2=13);
  6. translate([0,0,15]){
  7. color(col) cylinder(h=11, d=13);
  8. translate([0,0,11]) {
  9. cylinder(h=97, d=14.5);
  10. translate([0,0,97]) {
  11. color(col) cylinder(h=4, d=13);
  12. }
  13. }
  14. }
  15. }
  16. }
  17. marker("red");