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

    [Plugin] Extrude Edges by Rails to Lattice

    Scheduled Pinned Locked Moved Plugins
    73 Posts 25 Posters 94.0k Views 25 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.
    • pilouP Offline
      pilou
      last edited by

      @unknownuser said:

      I don't see how I could do the same with else tools

      Maybe 2 faces + path + FFD(or fredoscale) πŸ˜‰

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

      1 Reply Last reply Reply Quote 0
      • simon le bonS Offline
        simon le bon
        last edited by

        Thank you so much Dear Tig for this new amazing tool. πŸ‘ πŸ‘

        @tig said:

        Tip
        You are prompted to erase coplanar edges if the faces can survive without triangulation divisions.
        To ensure that you get 'flat' quad faces make sure that the profiles and rails are identical [perhaps copy them].

        Pretty good tip!

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_001_th.jpg

        @unknownuser said:

        ../
        Edit the group and select a pane.
        Right-click Context-menu > Select > All with same Material...
        All the panes are selected, Right-click Context-menu > Group.
        Repeat for the frames.

        I wanted to tell this one, but I'm outstripped by TIG πŸ˜„

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_002_th.jpg

        another interesting result is to adjust the depth to 0 in order to get a flat frame
        (and use soften & smooth for a simple aspect)

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_003_th.jpg


        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_004_th.jpg


        @unknownuser said:

        The tool 'EEbyRailsToLattice' was written to do a 3D lattice or the profiles/rails rib-lines as simple separated curves - so you can use them for other things - like 'EEbyFace' using different profiles for different parts...
        πŸ€“

        Extrude Edges by Rails to Lattice + ExtrudeEdgesBy2Faces

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_005_th.jpg


        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_006_th.jpg

        Extrude Edges by Rails to Lattice + ExtrudeEdgesByEdges

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_007_th.jpg

        Extrude Edges by Rails to Lattice + ExtrudeEdgesByEdges + ExtrudeEdgesByRailsByFace

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_008_th.jpg


        Extrude Edges by Rails to Lattice + Chris Fullmer tools

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_009_th.jpg

        Extrude Edges by Rails to Lattice + Didier Bur "lines to tubes" (with and without EEbRtL)

        http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_010_th.jpg

        etc.. etc..

        Vast possibilities πŸ‘ πŸ‘

        %(#0000BF)[Dear TIG, may I comment ? πŸ˜•
        -Extrude Edges by Rails to Lattice uses only ExtrudeEdgesByEdges. I would be really cool if we would be able to pick curves the same starting from ExtrudeEdgesByLoft and also from ExtrudeEdgesBy2Faces or from ExtrudeEdgesByLathe !
        -Do you think it would be possible to select also the diagonal curves family?]

        with my friendly respect, simon.

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

          Here's an update http://forums.sketchucation.com/viewtopic.php?p=242239#p242239
          It now has 'Diagonals' as an option.
          Reversing the order of picking the Rails swaps the direction of the diagonals.
          The lingvo files have been updated to match.

          TIG

          1 Reply Last reply Reply Quote 0
          • olisheaO Offline
            olishea
            last edited by

            cheers for grouping explanation.I think i clicked select all connected by color or something.....oopsy 😳

            fantastic work TIG, hats off!

            oli

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

              As you refine more and more does it possible to generate a "2 colors Checkboard" from the lattice?
              β˜€
              I have missed one case πŸ’š
              checker.jpg

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

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

                @unknownuser said:

                As you refine more and more does it possible to generate a "2 colors Checkboard" from the lattice? β˜€ [attachment=0:2q921w1c]<!-- ia0 -->checker.jpg<!-- ia0 -->[/attachment:2q921w1c]

                Pilou !
                Maintenant vous 'prenez la pisse' !
                🀣
                However, it would be relatively easy - the panes are stored as an array in the logical order they are made.
                We know the number of them down the rail and across the profile.
                If the number of profiles is odd then every other one is colored, if it's even then every other one is colored, BUT swapping the rule over at every 'rail' step change...
                If you separate out the panes by selecting by material and grouping they will remain ordered.
                Then find the group's faces...

                group=Sketchup.active_model.selection[0]
                panes=[]
                group.entities.each{|e|panes<< e if e.class==Sketchup;;Face}
                0.upto(panes.length-1) do |i|panes[i].material="black" if i/2==1/2.0; end
                

                Swap "black" for your desired color...
                This works for odd-numbers of panes across the profile - I'll leave you to do the line of code to do it for even-numbers... πŸ˜‰

                TIG

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

                  I will examine that πŸ˜„
                  I hope that can be input in the ruby console 😳

                  For the French line does it possible to have the original
                  because seems the translator gives a very exotic result πŸ˜†
                  something like that! 🀣

                  http://www.fotosearch.fr/bthumb/LIF/LIF139/NU106007.jpg

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

                  1 Reply Last reply Reply Quote 0
                  • olisheaO Offline
                    olishea
                    last edited by

                    🀣

                    lost in translation

                    oli

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

                      🀣
                      It's actually the same is English !
                      Even the same word, but without the 'e'.
                      Means much the same thing, 'faire pipi'...
                      We say "taking the " = making an unwelcome joke.
                      A convoluted way of saying someone is making a bad joke at your expense is to say, "You are extracting the urine, aren't you?".
                      C'est comme 'chier' ?
                      Noteworthy: to be "ed" is to be drunk [intoxicated] in the UK, but it means very fed-up or in a bad mood in the USA.
                      In the UK we would used "ed off" to be very fed-up or in a bad mood...
                      Which confusing is a vulgar way of saying that someone has left unexpectedly [probably in a bad mood] - e.g. "He's ed off !" = He has [just] left here.
                      Then to be on the '
                      ' is to be out on the town drinking.
                      To be a drunk is a to be a '
                      -head' [pejorative].
                      To waste something valuable is to '
                      it up the wall'.
                      Whilst something of unacceptably low quality is said to be '
                      -poor' !
                      In construction '****ed' means to be out of plumb - not vertical: e.g. "That door-frame is ****ed".

                      All very confusing πŸ˜•

                      TIG

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

                        Ok I see what do you mean πŸ˜„
                        But that is absolutly not the same in French πŸ˜‰
                        That don't exist with this liquid for these meanings! πŸ’š
                        A very familiar slang can be "vous vous foutez de moi" = you exagerate, you overpass the limits, you take me for a fool...
                        (or "tu te fous de moi" between best friends )
                        A convoluted way of saying someone is making a bad joke at your expense is to say
                        More elegant : "Vous vous moquez du monde", "Vous ne manquez pas d'air", "vous me prenez pour un pigeon, une andouille" etc... πŸ˜†
                        "Vous me faites chier" is the ultimate, insurmontable, for something who is absolutly obstrusive disturbing in the univers of the person! πŸ˜‰
                        But very slanguy language indeed! πŸ˜’

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

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

                          So, we both learn how to cuss better in our respective languages !
                          πŸ˜‰
                          So, don't mess with me dude ! πŸ‘Š

                          TIG

                          1 Reply Last reply Reply Quote 0
                          • majidM Offline
                            majid
                            last edited by

                            it is greeeeaaaaattttt TIG. you are killing me slowly πŸ‘ πŸ‘ πŸ‘ grrreaaat. thanx πŸ‘

                            My inspiring A, B, Sketches book: https://sketchucation.com/shop/books/intermediate/2612-alphabet-inspired-sketches--inspiring-drills-for-architects--3d-artists-and-designers-

                            1 Reply Last reply Reply Quote 0
                            • simon le bonS Offline
                              simon le bon
                              last edited by

                              @unknownuser said:

                              @unknownuser said:

                              I don't see how I could do the same with else tools

                              Maybe 2 faces + path + FFD(or fredoscale) πŸ˜‰

                              Hi Pilou πŸ˜‰

                              First, using "Extrude Edges by Rails to Lattice"

                              1. I had kept the perfect control on the general shape ( I think it's not possible at such degree with FFD or even with Fredoscale )
                                2)I had presently used a simple grid of rails, so I could do it by hand (erasing unwanted in the skinned shape). I can't imagine to achieve the same on a real large number of curves without the help of EEbRtL ..

                              Secondly, you are right for Kirill "2 faces + path" which plays in the same playground with "ExtrudeEdgesByFaces"

                              *simon

                              1 Reply Last reply Reply Quote 0
                              • simon le bonS Offline
                                simon le bon
                                last edited by

                                @tig said:

                                Here's an update http://forums.sketchucation.com/viewtopic.php?p=242239#p242239
                                It now has 'Diagonals' as an option.

                                This new tool is already but still growing an absolute "must have". Thank you so much Tig!

                                @unknownuser said:

                                Reversing the order of picking the Rails swaps the direction of the diagonals.
                                very elegant solution indeed πŸ˜‰


                                http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_017_th.jpg

                                +++simon

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

                                  IF I well understand "diagonals" is only for wire πŸ˜‰
                                  diagonales.jpg

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

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

                                    simn le bon , very nice job , how did you do to have this form plz
                                    can you make tutto ?

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

                                      There's a new version of EEbyRailsToLattice in the zipped set.
                                      The change is to the way the Line only versions are Grouped...
                                      http://forums.sketchucation.com/viewtopic.php?p=242239#p242239

                                      TIG

                                      1 Reply Last reply Reply Quote 0
                                      • N Offline
                                        numerobis
                                        last edited by

                                        AWESOME!!! Thank You very much for ANOTHER very helpful tool!!!

                                        1 Reply Last reply Reply Quote 0
                                        • simon le bonS Offline
                                          simon le bon
                                          last edited by

                                          @robert111 said:

                                          simn le bon , very nice job , how did you do to have this form plz
                                          can you make tutto ?

                                          http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_017_th.jpg

                                          Thank you Robert,
                                          very simple.

                                          http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_018_th.jpg

                                          RE: take care to carefully place the component axis (the blue axis is going to follow the curves)

                                          Then You will need Component Stringer from (our wellknown very nice fellow) Chris Fullmer

                                          It is recommended to apply a shortcut to this plugin :_ Window/ Preferences/ Shortcuts: for example Alt+c
                                          Because we have now to apply it one by one to each diagonal curve.

                                          http://i274.photobucket.com/albums/jj245/Spendauballet/SketchUp/EEbRtL_019_th.jpg

                                          that's it!

                                          πŸ˜‰ simon

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

                                            Have you some easy trick for make faces with the 2 diagonals lattices?

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

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

                                            Advertisement