sketchucation logo sketchucation
    • Login
    โ„น๏ธ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Stepped Extrude [Updated 20121106]

    Scheduled Pinned Locked Moved Plugins
    28 Posts 18 Posters 30.1k Views 18 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.
    • rami_lpmR Offline
      rami_lpm
      last edited by rami_lpm

      This tool allows stepped push pull.
      Pick one face, it gets extruded one step. Pick the next it gets extruded two steps, and so on.
      You can change the step height by typing it right after selecting the tool.
      It's useful when making stepped terrain models.

      As requested here http://sketchucation.com/forums/viewtopic.php?f=323&t=48651

      Now it handles contour lines as suggested by Chris.
      Thanks to sdmitch for the code to handle the moving of lines.


      RamTools_StepEx.rb

      1 Reply Last reply Reply Quote 0
      • gillesG Offline
        gilles
        last edited by

        Well done, I like it.

        " c'est curieux chez les marins ce besoin de faire des phrases "

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

          Yes, very good thanks!

          In regards to Topo work as in the example--there is a CAD application that I used that would interpret the height of contours in plan by the user drawing a section line. Another idea to specify the relative heights.

          What you have here might also be useful to model site steps (the kind people walk on) that are laid out in plan but too irregular for move-duplicate creation. Just as I needed yesterday...

          Thanks again for the plugin work.

          MacOSX MojaveSketchUp Pro v19 Twilight v2 Thea v3 PowerCADD

          1 Reply Last reply Reply Quote 0
          • Chris FullmerC Offline
            Chris Fullmer
            last edited by

            Great tool idea. Does it work with lines? If not, could you adjust it to work with lines? The user would click on a line and the script would select all connected and move it vertically by 1 unit, then 2 units, 3, etc. Same idea, I just rarely make stepped models. I deal with topo lines only and then use the sandbox tools to turn them into a TIN. Thanks!

            Chris

            Lately you've been tan, suspicious for the winter.
            All my Plugins I've written

            1 Reply Last reply Reply Quote 0
            • rami_lpmR Offline
              rami_lpm
              last edited by

              @pbacot said:

              there is a CAD application that I used that would interpret the height of contours in plan by the user drawing a section line. Another idea to specify the relative heights.

              This sounds very complicated, I'll see what I can do.

              @chris fullmer said:

              Does it work with lines? If not, could you adjust it to work with lines? The user would click on a line and the script would select all connected and move it vertically by 1 unit, then 2 units, 3, etc.

              No, it works only with faces. I think I can add that, it will take some time, though.

              Thanks for trying it out.

              1 Reply Last reply Reply Quote 0
              • Chris FullmerC Offline
                Chris Fullmer
                last edited by

                No rush, it might be a nice feature to add if you feel like adding something. Thanks!

                Lately you've been tan, suspicious for the winter.
                All my Plugins I've written

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

                  @rami_lpm said:

                  [
                  @chris fullmer said:

                  Does it work with lines? If not, could you adjust it to work with lines? The user would click on a line and the script would select all connected and move it vertically by 1 unit, then 2 units, 3, etc.

                  No, it works only with faces. I think I can add that, it will take some time, though.

                  Thanks for trying it out.

                  rami, Add this code to the onLeftButtonDown def. It will handle the edges or curves.

                   best.pushpull dist,false
                  else
                   best = ph.picked_edge
                   unless best==nil
                    @clickno += 1
                    dist=@clickno*@step
                    trans=Geom;;Transformation.translation([0,0,dist])
                    unless best.curve
                     edges=best.all_connected
                     verts=[];edges.each{|e| verts<<e.vertices}
                     verts.flatten!; verts.uniq!
                     verts.each{|v| Sketchup.active_model.entities.transform_entities(trans,v)}
                    else
                     Sketchup.active_model.entities.transform_entities(trans,best.curve)
                    end
                   end
                  
                  

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

                  http://sdmitch.blogspot.com/

                  1 Reply Last reply Reply Quote 0
                  • sumasterS Offline
                    sumaster
                    last edited by

                    Thank you very much

                    Thank you,
                    SUmaster

                    1 Reply Last reply Reply Quote 0
                    • boofredlayB Offline
                      boofredlay
                      last edited by

                      Nice. A much needed tool.

                      http://www.coroflot.com/boofredlay

                      1 Reply Last reply Reply Quote 0
                      • rami_lpmR Offline
                        rami_lpm
                        last edited by

                        It's updated. Thanks for that snippet.

                        1 Reply Last reply Reply Quote 0
                        • J Offline
                          JGA
                          last edited by

                          Great idea, thanks (again).

                          Regards,
                          JGA

                          1 Reply Last reply Reply Quote 0
                          • srxS Offline
                            srx
                            last edited by

                            Thanks! It could be useful for making stairs also... or SU logo ๐Ÿ˜„

                            www.saurus.rs

                            1 Reply Last reply Reply Quote 0
                            • B Offline
                              Ben Ritter
                              last edited by

                              Thank you Ramiro.

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

                                Cool! ๐Ÿ˜Ž
                                Works fine with the Multiple Offset by Sdmitch ๐Ÿ˜‰

                                sol.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

                                  Have you the same but only for lines ? ( with no PushPull of faces )
                                  Like this
                                  only lines are moving with Stepped Extrude , and there is no creation of faces !

                                  like a creation of levels of terrain for example ๐Ÿ˜„

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

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

                                    Pilou, The first post claims this is possible. I haven't tried. Peter

                                    MacOSX MojaveSketchUp Pro v19 Twilight v2 Thea v3 PowerCADD

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

                                      No it's draw also a face when you click a line like when you click on a face! ๐Ÿ˜‰

                                      I just want stepp the lines ! ๐Ÿ˜„

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

                                      1 Reply Last reply Reply Quote 0
                                      • sumasterS Offline
                                        sumaster
                                        last edited by

                                        Hi rami_lpm AND sdmitch,

                                        a Need of previous history Amount/Distance . . . .

                                        means create 2 face and use this tool and 1st face extrude 1 m. and 2nd face extrude the same amount . . .

                                        now its not working . . . . .

                                        thanks . . . .

                                        Thank you,
                                        SUmaster

                                        1 Reply Last reply Reply Quote 0
                                        • bsintzelB Offline
                                          bsintzel
                                          last edited by

                                          Simple, functional, useful and free...what more can one ask for. Well done ๐Ÿ‘

                                          I've taken obfuscating to a whole new level!

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

                                            The perfect fuse of simplicity and effectiveness.
                                            Salute to the authors.

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

                                            Advertisement