sketchucation logo sketchucation
    • Login
    ℹ️ GoFundMe | Our friend Gus Robatto needs some help in a challenging time Learn More

    Follow me tool on multiple surfaces

    Scheduled Pinned Locked Moved Newbie Forum
    sketchup
    16 Posts 9 Posters 3.4k Views
    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.
    • A Offline
      artiscon
      last edited by

      hello, my first post, I hope it makes sense.Is there a way to use follow me tool on several surfaces ,instead of doing it on one surface only and repeat it several times?.I have to model pergola (paralell rails) along one complex path(which I have "welded)
      thank you
      tony

      1 Reply Last reply Reply Quote 0
      • GaieusG Offline
        Gaieus
        last edited by

        Hi Tony,

        There are some plugins that can do PushPull on multiple faces but I cannot remember (or find) one that would do the same with the Follow me tool (or any kind of "extrusion").

        Would these pieces be identical when finished?

        Gai...

        1 Reply Last reply Reply Quote 0
        • A Offline
          artiscon
          last edited by

          Thank you Gaeius...yes, all identical.Those twenty pieces go around the edge of the wall (which have complex shape).I have drawn the path,"welded" it and have to use follow me tool twenty times.I was thinking I could do them with one click?
          thanks again
          Tony


          detail.jpg

          1 Reply Last reply Reply Quote 0
          • GaieusG Offline
            Gaieus
            last edited by

            Hi Tony,

            In this case I would only make one of these pieces, make it into a component and distribute it along the path with either a simple linear array, around any circular curve (if there is any) with a radial array or along a more complex path with a ruby plugin (knowing what the path would look like could give me an idea which plugin maybe, something like PathCopy or Component Stringer would do).

            This would have the advantage that if you later modify any of the components, all the others would reflect this change.

            Gai...

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

              I don't believe that a real "multiple follow me" exist πŸ˜‰
              Pusp push multiple yes by fredo 6 Joint Push Pull
              Line2tubes yes (for a square take 4 as precision)by Didier Bur
              ...

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

              1 Reply Last reply Reply Quote 0
              • A Offline
                artiscon
                last edited by

                Thanks for the help
                t.

                1 Reply Last reply Reply Quote 0
                • R Offline
                  raffy
                  last edited by

                  hi,
                  is there anyone can help me to find the component stringer plugin....i tried so many time searching but i didnt find any installer...

                  1 Reply Last reply Reply Quote 0
                  • GaieusG Offline
                    Gaieus
                    last edited by

                    Hi Raffy and welcome!

                    Here you can find it attached to the top of the post:
                    http://forums.sketchucation.com/viewtopic.php?t=23616

                    Gai...

                    1 Reply Last reply Reply Quote 0
                    • O Offline
                      onzki
                      last edited by

                      Hi there, I saw that this thread was first started back in 2010.. any solutions to date? Just want to resurrect an old query. I appreciate your help, I find my self in need of such plugin because I'm doing a steel railing that has multiple shapes and if only a multi-face follow me exist, it'll be easier for my current task πŸ˜„ Thanks!


                      Follow me multi face.png


                      [/hr]Dell Alienware Area-51. SKU 2021 Pro. AutoCAD 2023. Landscape design firm

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

                        The 'path' doesn't have to be 'consumed' by the new geometry, locate it well below the faces to be FollowMe'd.
                        Then Pre-Select the path and activate FollowMe, click on the lowest face, a profile is made.
                        Next Re-Select the path and activate FollowMe, click on the next face, a profile is made.
                        Repeat till done.
                        Use shortcuts: for Select it's <spacebar> and FollowMe can be given one - like Alt+F
                        This makes the steps only a few more than if a single tool did it...

                        However, here is a code snippet that does it for you !
                        Tips:
                        Ensure that the faces to extrude have their 'backs' to the start of the path.
                        Ensure the path is NOT going to be 'consumed' by the extruded geometry, by placing it below the lowest face.
                        Pre-Select the path AND the faces, do NOT include any faces' edges.
                        Then copy/paste the code into the Ruby Console +<enter>

                        m=Sketchup.active_model; s=m.selection; m.start_operation('xf'); s.grep(Sketchup;;Face).each{|f| f.followme(s.grep(Sketchup;;Edge))}; m.commit_operation;
                        
                        

                        All of the face FollowMe along the selected path in one go.
                        It is one step undo-able.

                        TIG

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

                          You could also look at something like the Profile Builder plugin/extension. You might need something more than the free version so that you can build your own profile. If you buy it, you can build any profile you need and it will then use that profile along a welded path.

                          You can find it at http://www.smustard.com The full version (where you can build your own profile is $20. I use the "free" version quite often.

                          1 Reply Last reply Reply Quote 0
                          • BoxB Offline
                            Box
                            last edited by

                            There is a simple workaround for this that people often miss.
                            Just draw a circle around your group of faces and extrude that.
                            Tiny bit of clean up and reversing of faces and away you go.


                            Multi.gif

                            1 Reply Last reply Reply Quote 0
                            • pbacotP Offline
                              pbacot
                              last edited by

                              doh!

                              MacOSX MojaveSketchUp Pro v19 Twilight v2 Thea v3 PowerCADD

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

                                Tricky but faces must be with preference perpendicular to the start path! πŸ˜‰

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

                                1 Reply Last reply Reply Quote 0
                                • O Offline
                                  onzki
                                  last edited by

                                  @tig said:

                                  However, here is a code snippet that does it for you !
                                  Tips:
                                  Ensure that the faces to extrude have their 'backs' to the start of the path.
                                  Ensure the path is NOT going to be 'consumed' by the extruded geometry, by placing it below the lowest face.
                                  Pre-Select the path AND the faces, do NOT include any faces' edges.
                                  Then copy/paste the code into the Ruby Console +<enter>

                                  m=Sketchup.active_model; s=m.selection; m.start_operation('xf'); s.grep(Sketchup;;Face).each{|f| f.followme(s.grep(Sketchup;;Edge))}; m.commit_operation;
                                  > 
                                  

                                  All of the face FollowMe along the selected path in one go.

                                  It is one step undo-able.

                                  Thanks a lot, I'll give this a try.


                                  [/hr]Dell Alienware Area-51. SKU 2021 Pro. AutoCAD 2023. Landscape design firm

                                  1 Reply Last reply Reply Quote 0
                                  • O Offline
                                    onzki
                                    last edited by

                                    @box said:

                                    There is a simple workaround for this that people often miss.
                                    Just draw a circle around your group of faces and extrude that.
                                    Tiny bit of clean up and reversing of faces and away you go.

                                    Haha.. I like this trick. I'll give it a try, I never thought about this technique before. Thanks for sharing πŸ˜„


                                    [/hr]Dell Alienware Area-51. SKU 2021 Pro. AutoCAD 2023. Landscape design firm

                                    1 Reply Last reply Reply Quote 0
                                    • 1 / 1
                                    • First post
                                      Last post
                                    Buy SketchPlus
                                    Buy SUbD
                                    Buy WrapR
                                    Buy eBook
                                    Buy Modelur
                                    Buy Vertex Tools
                                    Buy SketchCuisine
                                    Buy FormFonts

                                    Advertisement