Notch Tubing at an Angle without a Tubing Notcher: 3D Printed Tube Coping Tool

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ส.ค. 2020
  • This tube notching template will provide perfect fits for TIG welding round tubing at any angle. The link below will lead you to a tool to create models for tube coping jigs for any welding project where you need to join round tubing by coping or notching the ends. Whether you're TIG (GTAW) welding a tube frame chassis, MIG (GMAW) welding exhaust or stick (SMAW) welding a pipe joint, these tips and tricks can work for you.
    ***Unfortunately openjscad.org is not currently functioning, so the link below won't work. I'll post the code in the comments for anyone who wants to obtain and locally run openjscad***
    Get the model here: bit.ly/timstubenotcher
    Notes:
    1. It won't work on mobile devices, I used Google Chrome on Windows.
    2. You can use either inches or mm, but the units need to be consistent in all parameters
    3. It operates using my code on a CAD platform called OpenJSCAD. Much thanks to the developers of OpenJSCAD for making this possible.
    ***Affordable self-paced welding courses taught by me***
    courses.timwelds.com
    Stuff you might want (These are affiliate links that cost you no extra and provide a small commission to support the making of these videos.):
    Where I Buy Metal (OnlineMetals Affiliate Link): bit.ly/2XvJ4q4
    Carbide Burr: amzn.to/3iLyvXB
    Flap Discs: amzn.to/33Vv78C
    Fingerless Gloves: amzn.to/2DWnp3g
    TIG Cup I Use for Tubing (allows for long stickout): amzn.to/3kMGzJK
    TIG Gloves I use: amzn.to/2Y1Xr5A
    3D Printer: amzn.to/2PYayA6 ***Affiliate Notice***
    Some of the links on this page are affiliate links which provide a small commission from sales to help support this channel and make these videos possible. Thanks for your support!
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 94

  • @TimWelds
    @TimWelds  3 ปีที่แล้ว +19

    Unfortunately, openjscad.org is not currently functional, so the link will not work. I'll paste the code below for anyone who wants to obtain and locally run openjscad to do so. I'm hoping to find another way to host it as an online tool in the future.
    // Define user editable parameters:
    function getParameterDefinitions() {
    return [
    { name: 'od1', type: 'float', initial: 1, caption: "Outer diameter of notched tube:" },
    { name: 't2', type: 'float', initial: 0.050, caption: "Wall thickness of notched tube:" },
    { name: 'od2', type: 'float', initial: 1, caption: "Outer diameter of mating tube (must be equal to or larger than notched tube):" },
    { name: 'angle', type: 'float', initial: 90.0, caption: "Angle between tubes:" },
    { name: 't1', type: 'float', initial: 0.100, caption: "Wall thickness of template:" },
    { name: 'h', type: 'float', initial: 2, caption: "Height of template from base to intersection point of tube center lines:" },
    { name: 'clearance', type: 'float', initial: 0.015, caption: "Radial clearance between tube and template:" },
    ];
    }
    function main(params) {
    // tube diameter error checking
    if(params.od2 < params.od1) throw new Error("Mating tube must be the same size or larger than notched tube");
    //define variables
    var r1 = params.od1/2 + params.clearance; //inner radius of template
    var t2 = params.t2; //wall thickness of notched tube
    var r2 = params.od2/2; //outer radius of mating tube
    var theta = params.angle - 90; //angle from perpendicular
    var t1 = params.t1; //thickness of template
    var h = params.h; //height of notched tubing
    var vertices = []; //array to hold xyz coordinates of each vertex
    var nv = 4 * 360; //used for convenience in calculation, equal to number of vertices
    var indices = []; //array to index vertices in each polyhedron
    //define cross sectional vertices at each 1 degree of resolution
    for (i = 0; i < 360; i++){
    vertices[4*i] = [(r1+t1)*cos(i), (r1+t1)*sin(i), 0],
    vertices[4*i + 1] = [(r1+t1)*cos(i), (r1+t1)*sin(i), h + (r1*cos(i)*tan(theta)) - sqrt(pow(r2,2)-pow((r1-t2)*sin(i),2))/cos(theta)],
    vertices[4*i + 2] = [(r1)*cos(i), (r1)*sin(i), h + (r1*cos(i)*tan(theta)) - sqrt(pow(r2,2)-pow((r1-t2)*sin(i),2))/cos(theta)],
    vertices[4*i + 3] = [(r1)*cos(i), (r1)*sin(i), 0];
    }
    //define vertex indices for each quadrilateral facet bounding the resulting polyhedron
    for (i = 0; i < 360; i++){
    indices[4*i] = [(4*i+0)%nv, (4*i+1)%nv, (4*i+5)%nv, (4*i+4)%nv],
    indices[4*i + 1] = [(4*i+1)%nv, (4*i+2)%nv, (4*i+6)%nv, (4*i+5)%nv],
    indices[4*i + 2] = [(4*i+2)%nv, (4*i+3)%nv, (4*i+7)%nv, (4*i+6)%nv],
    indices[4*i + 3] = [(4*i+3)%nv, (4*i+0)%nv, (4*i+4)%nv, (4*i+7)%nv];
    }
    //build polyhedron based on vertices and indices
    return polyhedron({
    points: vertices,
    polygons: indices
    });
    }

    • @anleu1
      @anleu1 2 ปีที่แล้ว

      this is exactly what I was looking for to mark tubes to be made into dodecahedron and other polyhedron sides. The code posted above works perfectly with the online version of OpenJSCAD. I know this is not a programming tutorial, but how can I modify your code to be able to work with more precision on the angels? It seems it only takes integers as values; but I would need at least 1 decimal point to get a more perfect angle. Is there a way?

    • @industrialmechanicalworker2417
      @industrialmechanicalworker2417 ปีที่แล้ว +3

      not sure how to use this. i copy and paste and nothing happens

    • @emrmotionsims
      @emrmotionsims ปีที่แล้ว

      @@industrialmechanicalworker2417 same i cant get it to work

    • @mvorn44
      @mvorn44 ปีที่แล้ว

      I wonder if this can be done in Fusion 360? I just started using it.

    • @winkyfab2860
      @winkyfab2860 ปีที่แล้ว

      @@industrialmechanicalworker2417 you have to render it. hit f5 the purple arrow on the left will show you additional tools

  • @rolanddube2169
    @rolanddube2169 11 หลายเดือนก่อน

    I wish TH-cam had a "Love" button, that is a great idea! In the absence of a tubing cutter or an exceptionally cramped shop (where one has to make choices on what kind of equipment to get) this is gold. Thanks for sharing.

  • @Chris-jg3cl
    @Chris-jg3cl ปีที่แล้ว +2

    Great idea Tim, from one engineer to another! Another solution we came up with back in college was to use the sheet metal feature in solidworks (I assume other packages have similar features). Once tube diameters and notch angle were established we’d flatten the feature and create a 1:1 scaled drawing to print out. Then we’d cut it out, fold around tube and tape it together. You can also add reference lines to the templates as needed.

  • @memoaa7467
    @memoaa7467 3 ปีที่แล้ว +2

    Dude!!! this is awesome! New on the channel, Looking forward to see more material like this: 3D modeling + Metal Fabrication! B). Cheers from Baja, Mexico!

  • @scrapheaper
    @scrapheaper 3 ปีที่แล้ว

    thanks for sharing your file for the 3d printing AND the paper printing. This relatively simple device clearly helps many private beginners, non-3d owners to practice coping tubes right away. Also, its a lot more flexible as to diameter than the "PIPEMASTER" (1x dia/set), the ready made or diy-notchers (1x dia/hole saw) and of course any purpose built notch-only machines. Sharing knowledge probably is the most efficient way to unite across borders, far more than any politician can. Thanks and Shalom.

  • @olehoystad
    @olehoystad ปีที่แล้ว

    Dude, your videos are really good. Very well explained and thorough. Can’t wait to get started on my own welding projects. Greetings from Oslo, Norway✌️

  • @0088Cain0088
    @0088Cain0088 3 หลายเดือนก่อน

    This is perfect!!! I'm going to build my own headers now

  • @cakeshoe
    @cakeshoe 2 ปีที่แล้ว +1

    Good idea, especially for frequently used angles.
    I guess you could include a small indicator of the ‘clocking line’ on the sleeve of the printed template - if you need precision.

  • @El_Nortino
    @El_Nortino 8 หลายเดือนก่อน

    Tim you are a genius, thanks for this tip, its more cheaper, i dont need to buy the expensive metal adapted for this, thanks

  • @darylmeanger2849
    @darylmeanger2849 2 ปีที่แล้ว +1

    Hi Tim, thanks for the super-helpful videos! Can you make videos on the pitfalls of welding, like HAZ/cracking, warping, undercut, etc. Things that cause harm instead of good. Thanks from Norway!

  • @corysnladventures2758
    @corysnladventures2758 3 ปีที่แล้ว +10

    You should make them for different size of pipes and sell them with different degrees of angles like 90s and 45s 👍😁

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +3

      Cool idea

    • @raymondverheeck320
      @raymondverheeck320 3 ปีที่แล้ว

      Hi
      Can you make me 1.5", 1.75", 2" in both 90° & 45°?
      rverheeck@gmail.com

    • @corysnladventures2758
      @corysnladventures2758 3 ปีที่แล้ว +1

      @@raymondverheeck320 no I can't

  • @Japie196401
    @Japie196401 3 ปีที่แล้ว

    AWESOME solution and awesome video. Yep, now I a going to get a 3D printer...

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว

      Thanks! It was fun to come up with it. If you don't have a 3d printer, you can also find template makers online to print 2d versions on paper and wrap them around tubing.

  • @VladekR
    @VladekR 2 ปีที่แล้ว +1

    Tim, you made me feel really silly. I have been struggling with pipe notching but never had idea of 3d printing templates and I do 3d print a lot. It is very easy to do template model in any CAD (eg. FreeCAD). 👍👍👍👍👍

    • @cultex
      @cultex 2 ปีที่แล้ว

      How did you get the code to work in FreeCAD?

    • @VladekR
      @VladekR 2 ปีที่แล้ว +1

      @@cultex I did not use Tim's code, I created my own FreeCAD models from scratch

    • @cultex
      @cultex 2 ปีที่แล้ว

      @@VladekR oh! Thanks!

  • @walterbargersr3402
    @walterbargersr3402 2 ปีที่แล้ว +2

    Tim your page does not no longer exist for your coping tool for tubing notching for download . if you no longer have this site. where do you sell these pieces or where can I buy coping tools. This really could help me out something like this could you help me out. I don't have a computer or a way to download it anyway. can you help me out. oh by the way you have the best welding site on TH-cam I just wanted to tell you that .God bless you your family and all your friends. Thank you walt

  • @BlackDynamite901
    @BlackDynamite901 ปีที่แล้ว

    Brilliant idea

  • @TaylorAlexander
    @TaylorAlexander 2 ปีที่แล้ว

    Hey this is great! I can easily generate these while I am generating a full cad model of a part and I’ve got lots of 3D printers! I’m just learning and I was wondering how to do round tubes so it’s nice not to need to buy anything!

  • @billnis
    @billnis 3 ปีที่แล้ว +1

    Since the website is down, I downloaded the app from the windows store and pasted in the code from the comment you left. Seems to work fine. It would be helpful if there could be an offset so the notched tube didn't need to be in the center of the mating tube. I want to do a 1.25" tube flush with one edge of a 1.5" tube. Could this be added?

  • @taoisttiger4702
    @taoisttiger4702 ปีที่แล้ว

    Pretty sick thanks

  • @jy6174
    @jy6174 3 ปีที่แล้ว

    Great content Tim , I agree with Cory , you have a side business idea , I would be interested in a few templates . I probably won't build a 3d printer soon . there ore only so many hours left for me , lol.

  • @MrLoyd-yp1tr
    @MrLoyd-yp1tr ปีที่แล้ว

    Tim id like to see a good video on rod selections for ARC welding.

  • @anleu1
    @anleu1 2 ปีที่แล้ว

    this is exactly what I was looking for to mark tubes to be made into dodecahedron and other polyhedron sides. The code posted works perfectly with the online version of OpenJSCAD. I know this is not a programming tutorial, but how can I modify your code to be able to work with more precision on the angles? It seems it only takes integers as values; but I would need at least 1 decimal (69.095 or 69.1 if easier) point to get a more perfect angle. Is there a way?

  • @skrigz
    @skrigz 3 ปีที่แล้ว +1

    Anyway a slot can be added on both sides to the template for lining up the center lines?

  • @ArcticBlues1
    @ArcticBlues1 8 หลายเดือนก่อน

    Thank you :)

  • @kylefentz
    @kylefentz 2 ปีที่แล้ว

    Damm you have a gifted mind

  • @gustavoalvarez3335
    @gustavoalvarez3335 ปีที่แล้ว

    Hola espero que me entiendas actualmente se puede usar el programa para cortes de tubos? podrías mostrar como hacerlo funcionar muchas gracias y saludos desde Argentina.

  • @judelarkin2883
    @judelarkin2883 2 ปีที่แล้ว

    Very cool!

  • @hernanbenavides4821
    @hernanbenavides4821 3 ปีที่แล้ว

    Great tool and video Tim! just wondering where/how you select inches or mm?

  • @williammccormack5480
    @williammccormack5480 3 ปีที่แล้ว

    Good information. Earlier in the video you stated that you were a welding engineer, I am intrested in becoming one myself. And advice on becoming one???

  • @robertbroussard8685
    @robertbroussard8685 2 ปีที่แล้ว

    Any chance you could provide instructions on how to get this working locally? I could reall use this tool .
    I did get the chance to use it when it was still working but I am not very familiar with jscad and running it locally.

  • @nicholasjheinz7461
    @nicholasjheinz7461 2 ปีที่แล้ว

    Wonderful Channel Tim; been following you for about 1 year. Enjoy the content. Could not get your link to work.

  • @exodus6069
    @exodus6069 2 ปีที่แล้ว

    It has been good to watch can I get the link

  • @raymondsteele4142
    @raymondsteele4142 8 หลายเดือนก่อน

    Nice .

  • @grosseileracingteam
    @grosseileracingteam 3 ปีที่แล้ว

    What budget auto darkening helmet do you like for flux core welding? Thanks

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว

      I have several of the miller helmets at all levels and I really like them. I haven't tried many of the less expensive helmets that are out there today. The same hood will be good for pretty much any process, but if you're going to be running flux core, I would look for one with replaceable lens covers. I do have a YesWelder helmet on the way that I'll be trying in an upcoming TIG welder review, so that may be a good option, but I can't say for sure since I haven't tried it.

  • @charlieplaylist9469
    @charlieplaylist9469 2 ปีที่แล้ว +1

    Can I buy a set off 1” templates?

  • @matthiasvaillancourt8877
    @matthiasvaillancourt8877 5 หลายเดือนก่อน

    Wow! I thought I invented something, thinking to make 3D printed guide, man you nailed it!
    I have a prusa MK4, I use onshape free version and Sketchup, do you know how I could get that done? My struggle is the software part in your video, I didn’t get it well.
    Very nice work, I started following you!
    Thank you

  • @JustinPayton
    @JustinPayton ปีที่แล้ว

    Could you/have you uploaded the STL files anywhere, by chance???

  • @andrewgolub1347
    @andrewgolub1347 11 หลายเดือนก่อน

    Tim I want the code for the notching.

  • @ThereIsProbablyNoGod
    @ThereIsProbablyNoGod 3 ปีที่แล้ว

    Great video and great idea. Just described to your channel. I am just about to start welding and my first project will be a welding table. I have a bunch of tubes laying around and those are planned to be used for the rack. I was thinking about a way of notching the ends without some fancy, expensive tools. I am happy I found this video. My first template just came out from my 3D printer and it looks great. There is only one thing, I would like to have in the template and that is a groove or somthing else for easy alignment of the template on the tube, so you don't have to estimate the lowest part of the notch and mark it with a sharpy, but have it accurately marked by the 3D printer. I am not familiar with the scripting language used to create the template. Could someone point me to a small piece of code, that makes a little groove or ridge or something like that?

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +1

      Thanks! I added lines 33-35 in the code below to put in a notch like you're describing. Just go to openjscad.org, clear the code in the window on the right, paste in this code and press F5. Hope this works for you!
      // Define user editable parameters:
      function getParameterDefinitions() {
      return [
      { name: 'od1', type: 'float', initial: 1, caption: "Outer diameter of notched tube:" },
      { name: 't2', type: 'float', initial: 0.050, caption: "Wall thickness of notched tube:" },
      { name: 'od2', type: 'float', initial: 1, caption: "Outer diameter of mating tube (must be equal to or larger than notched tube):" },
      { name: 'angle', type: 'float', initial: 90.0, caption: "Angle between tubes:" },
      { name: 't1', type: 'float', initial: 0.100, caption: "Wall thickness of template:" },
      { name: 'h', type: 'float', initial: 2, caption: "Height of template from base to intersection point of tube center lines:" },
      { name: 'clearance', type: 'float', initial: 0.015, caption: "Radial clearance between tube and template:" },
      ];
      }
      function main(params) {
      // tube diameter error checking
      if(params.od2 < params.od1) throw new Error("Mating tube must be the same size or larger than notched tube");
      //define variables
      var r1 = params.od1/2 + params.clearance; //inner radius of template
      var t2 = params.t2; //wall thickness of notched tube
      var r2 = params.od2/2; //outer radius of mating tube
      var theta = params.angle - 90; //angle from perpendicular
      var t1 = params.t1; //thickness of template
      var h = params.h; //height of notched tubing
      var vertices = []; //array to hold xyz coordinates of each vertex
      var nv = 4 * 360; //used for convenience in calculation, equal to number of vertices
      var indices = []; //array to index vertices in each polyhedron
      //define cross sectional vertices at each 1 degree of resolution
      for (i = 0; i < 360; i++){
      vertices[4*i] = [(r1+t1)*cos(i), (r1+t1)*sin(i), 0],
      vertices[4*i + 1] = [(r1+t1)*cos(i), (r1+t1)*sin(i), h + (r1*cos(i)*tan(theta)) - sqrt(pow(r2,2)-pow((r1-t2)*sin(i),2))/cos(theta)],
      vertices[4*i + 2] = [(r1)*cos(i), (r1)*sin(i), h + (r1*cos(i)*tan(theta)) - sqrt(pow(r2,2)-pow((r1-t2)*sin(i),2))/cos(theta)],
      vertices[4*i + 3] = [(r1)*cos(i), (r1)*sin(i), 0];
      }
      //place recessed notch in template
      vertices[0] = [(r1+t1*0.6)*cos(0), (r1+t1/2)*sin(0), 0];
      vertices[1] = [(r1+t1*0.6)*cos(0), (r1+t1/2)*sin(0), h + (r1*cos(0)*tan(theta)) - sqrt(pow(r2,2)-pow((r1-t2)*sin(0),2))/cos(theta)];
      //define vertex indices for each quadrilateral facet bounding the resulting polyhedron
      for (i = 0; i < 360; i++){
      indices[4*i] = [(4*i+0)%nv, (4*i+1)%nv, (4*i+5)%nv, (4*i+4)%nv],
      indices[4*i + 1] = [(4*i+1)%nv, (4*i+2)%nv, (4*i+6)%nv, (4*i+5)%nv],
      indices[4*i + 2] = [(4*i+2)%nv, (4*i+3)%nv, (4*i+7)%nv, (4*i+6)%nv],
      indices[4*i + 3] = [(4*i+3)%nv, (4*i+0)%nv, (4*i+4)%nv, (4*i+7)%nv];
      }
      //build polyhedron based on vertices and indices
      return polyhedron({
      points: vertices,
      polygons: indices
      });
      }

    • @ThereIsProbablyNoGod
      @ThereIsProbablyNoGod 3 ปีที่แล้ว

      @@TimWelds Wow, many thanks for that. 👍 Just tried it and it works. I just have to figure out what I have to change, to change the width of the notch, to be sure it comes out good visible in the print. Will play around with it.

  • @kenkidd1361
    @kenkidd1361 3 ปีที่แล้ว +2

    Could you modify that to print out on a flat sheet of paper for those of us who don't have 3d printers?

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +1

      Thanks for watching and for the comment! That has been done by several others. If you google 'tube cope template', you will find some online calculators. One hit was www.blocklayer.com/pipe-notch.aspx . I haven't used these, but they probably work just as well. Maybe I'll make a video in the future comparing different methods such as paper templates, 3d printed templates, centurial templates, measured setbacks, double miters and traditional notchers.

    • @kenkidd1361
      @kenkidd1361 3 ปีที่แล้ว

      @@TimWelds Thanks for the response. I see the value in the printed templates as far as reuse. It's just that all of us don't have 3d printers.

    • @hhgarciav
      @hhgarciav 3 ปีที่แล้ว

      Hola amigo, por favor, checkea www.etubespro.com - Plantillas de corte de tubos de cualquier diámetro y espesor que se corten con otros tubos, en cualquier ángulo. Las plantillas se generan en un plano en formato DXF o DWG (Autocad) y luego se imprimen en escala real.
      Hi folk, please, visit www.etubespro.com Saddle templates for tubes/pipes of any size and thickness intersecting any other tubes/pipes at any angle. Templates are generated in DXF / DWG format and then printed at real scale.

  • @kevinschilling6813
    @kevinschilling6813 ปีที่แล้ว

    Tim,
    This code is awesome. Is there some "Hot Keys" to minimize the code? The OpenJSCAD doesn't have the radio button on the right side of the screen as yours does, just the left. And a radio button in the top labeled "Blocks". Aside from that, your code works like a champ!

  • @kevinschilling6813
    @kevinschilling6813 ปีที่แล้ว

    Ummm..
    My cura had some serious issues with the scaling. A 1" piece of tube shouldn't come up as the size of a pencil eraser. 1" in mm is 25.4.. I think in my case, I need to adjust to 2540, not 25.40.. That seems to work. But this is really cool and should be able to be used to generate the gcode to cut tube on a cnc plasma table with a 4th axis..

  • @Handandhammerprojects
    @Handandhammerprojects 3 หลายเดือนก่อน

    Do you have a code for this, great vid by the way..

  • @NotJustBBQLLC
    @NotJustBBQLLC 2 ปีที่แล้ว

    Have you started selling the templates

  • @CLPRPSD
    @CLPRPSD 3 ปีที่แล้ว

    Is there an option to export to pdf and print to paper?

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +2

      A few people have created websites that do this. One that I am familiar with is www.blocklayer.com/pipe-notch.aspx . I have no affiliation with them, but it seems to do the job you're looking for. Thanks!

  • @haf-oq3vt
    @haf-oq3vt 9 หลายเดือนก่อน

    It just return to the time. Many tools you have to use to make it ready.😂

  • @niskyhikmahnurmilah9746
    @niskyhikmahnurmilah9746 3 ปีที่แล้ว

    Link pembeliannya mana ini ?

  • @chrisinkansas1362
    @chrisinkansas1362 2 ปีที่แล้ว

    How much would you charge for the templates you made? Those would be handy in my line of work!

    • @josed22ns
      @josed22ns ปีที่แล้ว

      What kind of work you do

  • @gilhernandez605
    @gilhernandez605 10 หลายเดือนก่อน

    Can this be printed on paper - I dont have a 3D printer.

    • @TimWelds
      @TimWelds  10 หลายเดือนก่อน

      There are paper template creators online if you Google ‘tube cope template’.

  • @elidari60
    @elidari60 3 ปีที่แล้ว

    The link for the software to notch tubing it’s not working

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว

      Unfortunately, openjscad.org is not currently functional. I'm hoping to find another way to host it in the future.

  • @h3avym3tals69
    @h3avym3tals69 ปีที่แล้ว +1

    A fabricator who is also into 3d printing?
    I got some people you need to meet if you have one more hobby/interest....
    What does 2A mean to you?
    😅

  • @winkyfab2860
    @winkyfab2860 3 ปีที่แล้ว

    I have tried the link to openjscad.org and it doesn't seem to be working. Is there an issue with it or with openjscad.org in general. Thanks

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +1

      Looks like openjscad is down. Hopefully they get it back up and running in the future.

  • @EstechMagnetics
    @EstechMagnetics 3 วันที่ผ่านมา

    What’s a “welding engineer”

  • @robertb1120
    @robertb1120 3 ปีที่แล้ว

    This tool no longer seems to work.
    Maybe the link is broken.
    It is a shame because it was very useful.

    • @nonyabidness6492
      @nonyabidness6492 3 ปีที่แล้ว

      There's plenty others on Google just look 3d tube cutting guide or similar

  • @GotScout
    @GotScout 5 หลายเดือนก่อน

    Tim MAKE AND SELL, I'm a buyer. (and I don't 3d print!!)

  • @Thekingmaker
    @Thekingmaker 3 ปีที่แล้ว

    The only real question is how did you become a God among men?

  • @LawtonDigital
    @LawtonDigital 3 ปีที่แล้ว +2

    I'd rather just print the shape onto paper, cut out the shape, wrap it around the tube, and trace the outline. Paper printing takes a lot less time than 3D printing, it's a lot less expensive, and it's just as easy to use.

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +4

      There are some websites out there that will create the paper templates you are talking about, which kind of inspired coming up with this. I find these quite a bit easier to use and they can be reused many times, however there are 7 ways that I know of to notch tubing and everyone will have their preference. No worries if it's different than mine. Thanks for watching and for the comment!

  • @elidari60
    @elidari60 3 ปีที่แล้ว

    That’s a shame since I’m not very good of writing program so understanding what you wrote there is no way for me to even look at it well I guess subscribing to your side it’s nice but it doesn’t help thank you

  • @toddcott9510
    @toddcott9510 ปีที่แล้ว

    In this modern day, why on earth is the US still messing about with feet and inches?

    • @TimWelds
      @TimWelds  ปีที่แล้ว

      So that tool companies can sell twice as many wrenches and sockets, I suppose.

  • @guloguloguy
    @guloguloguy 5 หลายเดือนก่อน

    IMHO: FORGET THE "COMPUTER", AND "3D PRINTER"!!!!....JUST DRAW OUT YOUR "PATTERN, ON PAPER!!!!!!!!...

    • @TimWelds
      @TimWelds  5 หลายเดือนก่อน

      That’s fine too.

  • @peteraq5501
    @peteraq5501 3 ปีที่แล้ว

    Just buy a tube notcher , jeez!!

    • @TimWelds
      @TimWelds  3 ปีที่แล้ว +4

      I have a tube notcher. This gives a better result for high precision work.

  • @anleu1
    @anleu1 2 ปีที่แล้ว +1

    this is exactly what I was looking for to mark tubes to be made into dodecahedron and other polyhedron sides. The code posted above works perfectly with the online version of OpenJSCAD. I know this is not a programming tutorial, but how can I modify your code to be able to work with more precision on the angels? It seems it only takes integers as values; but I would need at least 1 decimal point to get a more perfect angle. Is there a way?