sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Lines to tubes

    Scheduled Pinned Locked Moved Plugins
    131 Posts 61 Posters 276.3k Views 61 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S Offline
      shawnyeh
      last edited by

      hello,
      I got the same situation that can't find lines2tube in tool menu bar in MAC sketchup2014 .
      Is there anyone can help me out ?

      Thanks.


      螢幕快照 2014-08-12 上午11.19.48.png

      1 Reply Last reply Reply Quote 0
      • S Offline
        shawnyeh
        last edited by

        Thanks Dave, it works!!

        1 Reply Last reply Reply Quote 0
        • H Offline
          helik
          last edited by

          Thank you very much Dave!

          1 Reply Last reply Reply Quote 0
          • C Offline
            chris87
            last edited by

            Great plugin !
            Thank you !

            1 Reply Last reply Reply Quote 0
            • TIGT Offline
              TIG Moderator
              last edited by

              Please get the latest v2014/2015 compatible version from the PluginStore http://sketchucation.com/pluginstore?pln=lines2tubes

              TIG

              1 Reply Last reply Reply Quote 0
              • C Offline
                chauhuyphan
                last edited by

                Great plugin! Thanks you !

                1 Reply Last reply Reply Quote 0
                • josephkim626J Offline
                  josephkim626
                  last edited by

                  As I am often giving precision 4 to give a rectangular look, im just wondering if there would be a way to rotate the profile 45 degrees. Effectively, having a rectangular tubes.

                  1 Reply Last reply Reply Quote 0
                  • sdmitchS Offline
                    sdmitch
                    last edited by

                    @josephkim626 said:

                    As I am often giving precision 4 to give a rectangular look, im just wondering if there would be a way to rotate the profile 45 degrees. Effectively, having a rectangular tubes.

                    Yes, but this particular plugin is scrambled so only the creator can make that change.

                    In the mean time, maybe this will help. You can copy and paste into the Ruby Console to try it out.

                    mod = Sketchup.active_model
                    ent = mod.active_entities
                    sel = mod.selection
                    unless sel.empty?
                      vars=UI.inputbox(["Number of Sides;"," Length of a Side;","Angle of Rotation;"],[4,1,45],"Tube Specifications")
                      if vars
                        n,l,d=vars
                        a=180/n
                        r=l/Math.sin(a.degrees)/2
                        edgs=sel.grep(Sketchup;;Edge)
                        edgs.each{|e|
                          p,v=e.line
                          grp=ent.add_group;ge=grp.entities
                          tube=ge.add_ngon(p,v,r,n)
                          face=ge.add_face(tube)
                          ent.transform_entities(Geom;;Transformation.rotation(p,v,d.degrees),face)
                          face.followme e
                          grp.explode
                        }
                      end
                    else
                      UI.messagebox "Select Edges"
                    end
                    
                    

                    Nothing is worthless, it can always be used as a bad example.

                    http://sdmitch.blogspot.com/

                    1 Reply Last reply Reply Quote 0
                    • ntxdaveN Offline
                      ntxdave
                      last edited by

                      While I like the plugin and seem some valuable uses, I am having a problem with it.

                      Here is a screen capture of the problem I am having:
                      Capture - Pipes 2 Lines problem.png

                      I tried to be very careful when connecting the three segments (made sure the arch that connected the two straight lines was tangent) but I have many occasions where I will need to draw some pipes with multiple curves.

                      I will assume I am doing something wrong. I have also attached the skp file (I moved the resulting tube so that the original line can be seen).


                      Lines2Pipes.skp

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        driven
                        last edited by

                        @nxtdave,
                        download tig_weld and weld your 3 lines first...
                        john

                        learn from the mistakes of others, you may not live long enough to make them all yourself...

                        1 Reply Last reply Reply Quote 0
                        • ntxdaveN Offline
                          ntxdave
                          last edited by

                          @driven said:

                          @nxtdave,
                          download tig_weld and weld your 3 lines first...
                          john

                          Already had weld installed. Just did not use it. When I welded the lines, it worked perfect. Even tried a freehand line and it worked fine as well.
                          👍

                          Thanks..........I should have thought of that 😳

                          Might be something that should be explored for a future release though. Just out of curiosity, I also have the free version of Profile Builder and it worked fine on the original lines though without using the Weld tool.

                          Just a thought..........

                          1 Reply Last reply Reply Quote 0
                          • josephkim626J Offline
                            josephkim626
                            last edited by

                            @sdmitch said:

                            @josephkim626 said:

                            As I am often giving precision 4 to give a rectangular look, im just wondering if there would be a way to rotate the profile 45 degrees. Effectively, having a rectangular tubes.

                            Yes, but this particular plugin is scrambled so only the creator can make that change.

                            In the mean time, maybe this will help. You can copy and paste into the Ruby Console to try it out.

                            mod = Sketchup.active_model
                            > ent = mod.active_entities
                            > sel = mod.selection
                            > unless sel.empty?
                            >   vars=UI.inputbox(["Number of Sides;"," Length of a Side;","Angle of Rotation;"],[4,1,45],"Tube Specifications")
                            >   if vars
                            >     n,l,d=vars
                            >     a=180/n
                            >     r=l/Math.sin(a.degrees)/2
                            >     edgs=sel.grep(Sketchup;;Edge)
                            >     edgs.each{|e|
                            >       p,v=e.line
                            >       grp=ent.add_group;ge=grp.entities
                            >       tube=ge.add_ngon(p,v,r,n)
                            >       face=ge.add_face(tube)
                            >       ent.transform_entities(Geom;;Transformation.rotation(p,v,d.degrees),face)
                            >       face.followme e
                            >       grp.explode
                            >     }
                            >   end
                            > else
                            >   UI.messagebox "Select Edges"
                            > end
                            > 
                            

                            Thank you so much, this helped for me at least this time.
                            I had to remove "grp.explode" line as I wanted them to be a grouped members.
                            who is the creator of this plugin? I know it has been tossed around couple times.
                            (I will still need an option to use "mm" units, follow welded edges as solid)

                            1 Reply Last reply Reply Quote 0
                            • sdmitchS Offline
                              sdmitch
                              last edited by

                              Didier Bur is the creator of the "Lines2Tubes" plugin.

                              Nothing is worthless, it can always be used as a bad example.

                              http://sdmitch.blogspot.com/

                              1 Reply Last reply Reply Quote 0
                              • G Offline
                                Guilherme Bera
                                last edited by

                                I'd like to thank you by this plugin.

                                But it doesn't have a toolbar, and once that the plugin "Toolbar Editor" from Aerilius, induced me to make the workspace more visual. I decided to modify a bunch of scripts just enough to support toolbar, but your script is scrambled, so I can't do it by myself. So I'd be glad if you could modify your plugin just enough to support toolbar.

                                Then a simple way to add the toolbar support is like TIG commented in another topic (bit.ly/29PAk6T😞

                                @unknownuser said:

                                An example of the menu making command is:

                                unless file_loaded?(__FILE__)
                                >    cmd = UI;;Command.new("SomeCommandName"){ SomeCommand.new() }
                                >    UI.menu("Plugins").add_item(cmd)
                                > ### START - ADD TOOLBAR HERE...
                                > ### END -   ADD TOOLBAR HERE
                                >    file_loaded(__FILE__)
                                > end
                                

                                If it's a 'Tool' the CMD setup is slightly different...

                                An example to use that within a toolbar is this additional code added between the ### markers:

                                cmd.tooltip = "SomeCommandName"
                                > cmd.status_bar_text = "SomeText"
                                > cmd.small_icon = File.join("SomeCommandFolder/ImagesFolder", 'icon-24.png')
                                > cmd.large_icon = File.join("SomeCommandFolder/ImagesFolder", 'icon-32.png')
                                > toolbar = UI;;Toolbar.new("SomeCommandName")
                                > toolbar.add_item(cmd)
                                > toolbar.show if toolbar.get_last_state.abs == 1 # TB_VISIBLE/NEVER
                                

                                Note how addition properties are needed for the cmd to be used in a toolbar.
                                The path to the button icons and their names is up to you...

                                PS: If it could be helpful, I attached icons created for the toolbar.


                                lines2tubes_32.png


                                lines2tubes_24.png

                                1 Reply Last reply Reply Quote 0
                                • pilouP Offline
                                  pilou
                                  last edited by

                                  Does it possible to modify the plugin
                                  for have a rotation input?

                                  Now we have this!
                                  As you remark there is an Up Orientation!
                                  GIF_tube.gif

                                  Wanted! 🤓

                                  squares_w.jpg

                                  Frenchy Pilou
                                  Is beautiful that please without concept!
                                  My Little site :)

                                  1 Reply Last reply Reply Quote 0
                                  • josephkim626J Offline
                                    josephkim626
                                    last edited by

                                    @pilou said:

                                    Does it possible to modify the plugin
                                    for have a rotation input?

                                    Now we have this!
                                    As you remark there is an Up Orientation!
                                    [attachment=1:1rui9dug]<!-- ia1 -->GIF_tube.gif<!-- ia1 -->[/attachment:1rui9dug]

                                    Wanted! 🤓

                                    [attachment=0:1rui9dug]<!-- ia0 -->squares_w.jpg<!-- ia0 -->[/attachment:1rui9dug]

                                    Sdmitch has his own plugin that does what you are describing.

                                    http://sdmitch.blogspot.co.uk/

                                    find "Edge To Tube"

                                    1 Reply Last reply Reply Quote 0
                                    • josephkim626J Offline
                                      josephkim626
                                      last edited by

                                      @pilou said:

                                      Seems bugged! 😉
                                      Or works only for curves ?
                                      Seems working only from polys of 5 segments! 😉

                                      [attachment=1:17is50ip]<!-- ia1 -->GIF_bugged.gif<!-- ia1 -->[/attachment:17is50ip]

                                      Indeed it behaves funny when it is run on rectangles.

                                      But it seems fine for some others.

                                      [attachment=0:17is50ip]<!-- ia0 -->tube.gif<!-- ia0 -->[/attachment:17is50ip]


                                      tube.gif

                                      1 Reply Last reply Reply Quote 0
                                      • pilouP Offline
                                        pilou
                                        last edited by

                                        Seems bugged! 😉
                                        Or works only for curves ?
                                        Seems working only from polys of 5 segments! 😉

                                        GIF_bugged.gif

                                        bugg4.jpg

                                        Frenchy Pilou
                                        Is beautiful that please without concept!
                                        My Little site :)

                                        1 Reply Last reply Reply Quote 0
                                        • pilouP Offline
                                          pilou
                                          last edited by

                                          The "Do curve" is somptuous! 👍
                                          (not my video 💚
                                          (currioussly don't works for the rectangles! 😲

                                          Bravo to Sdmitch! 😎

                                          Ps Will be very fine for any "section" 😉

                                          GIF_do_curve.gif

                                          Frenchy Pilou
                                          Is beautiful that please without concept!
                                          My Little site :)

                                          1 Reply Last reply Reply Quote 0
                                          • ntxdaveN Offline
                                            ntxdave
                                            last edited by

                                            One thing that does not work correctly for me is the Materials parameter. It will only allow me to select a material that has already been used in the model.

                                            Maybe I am doing something wrong................

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 6 / 7
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement