Close



Results 1 to 10 of 33

Hybrid View

  1. #1
    Yes please do ! I do not have OpenSCAD but I can get it.

    Quote Originally Posted by jamcultur View Post
    Do you have OpenSCAD? I can send you the script. It is set up so that you can use it with the customizer to change the width and height of the object.

  2. #2
    Engineer-in-Training
    Join Date
    Jul 2020
    Location
    Monterey Bay, California
    Posts
    368
    Add jamcultur on Thingiverse
    Quote Originally Posted by Griffinmcg View Post
    Yes please do ! I do not have OpenSCAD but I can get it.
    I'll put it here in case anyone else is interested.

    width = 76;
    height = 130;
    draw_one();
    translate([0, 0, (height/2)-0.01])
    rotate([0, 0, 45])
    draw_one();

    module draw_one() {
    hull() {

    cube([width, width, 0.01], center=true);

    translate([0, 0, (height/2)])

    rotate([0, 0, 45])

    cube([width, width, 0.01], center=true);

    }
    }

    When you run it with the OpenSCAD customizer, you'll get a very simple user interface where you can specify the width and height in millimeters.

    customizer.JPG

    Edit: Sorry the code lost its formatting when I uploaded it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •