• Login
sketchucation logo sketchucation
  • Login
πŸ€‘ SketchPlus 1.3 | 44 Tools for $15 until June 20th Buy Now

[Plugin] Extrude Edges by Face

Scheduled Pinned Locked Moved Plugins
38 Posts 10 Posters 53.2k Views 10 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.
  • T Offline
    TIG Moderator
    last edited by 19 Feb 2010, 13:27

    See here http://forums.sketchucation.com/viewtopic.php?p=226249#p226249 for Extrude Edges by Faces...

    TIG

    1 Reply Last reply Reply Quote 0
    • T Offline
      TIG Moderator
      last edited by 20 Feb 2010, 17:08

      Tool has been updated
      1.4 20100220 Glitch on some text in db fixed.
      1.5 20100220 Glitch with number of Rail-Ribs fixed.
      Color coding of picked curves added.
      Profile=Cyan
      Rail1=Magenta
      Rail2=DarkVioletRed
      MeldingProfile=DarkCyan
      FaceEdges=Orange
      See here for download link http://forums.sketchucation.com/viewtopic.php?p=224218#p224218

      TIG

      1 Reply Last reply Reply Quote 0
      • C Offline
        chrisjk
        last edited by 20 Feb 2010, 18:03

        TIG, there now seems to be a problem with your latest EEBRF:-

        http://woodgen.smugmug.com/Other/MIsc-Forum-posts-1/Screen-shot-2010-02-20-at/792649990_rXWyB-L.png

        so far so good..

        http://woodgen.smugmug.com/Other/MIsc-Forum-posts-1/Screen-shot-2010-02-20-at/792649988_5PBK3-L.png

        It just stops working here after clicking OK.

        Chris

        1 Reply Last reply Reply Quote 0
        • P Offline
          pilou
          last edited by 20 Feb 2010, 18:17

          Are you sure?
          Just wait end calculation ?
          Do you see something bottom screen left corner screen line help?

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

          1 Reply Last reply Reply Quote 0
          • C Offline
            chrisjk
            last edited by 20 Feb 2010, 19:04

            Frenchy,

            I am sure. I replaced the latest version with a version from 18 Feb and that works fine. Changing the older one out for the newer again and it still hangs at the same point.

            I am on a Mac - maybe there's a difference?

            Chris

            1 Reply Last reply Reply Quote 0
            • T Offline
              TIG Moderator
              last edited by 20 Feb 2010, 19:06

              There are two tools EEbyFace and EEbyRailsByFace - you are jumbling the threads. πŸ˜•
              EEbyFace - you pre-pick a Face and a path of Edges and run the tool there are no prompts to pick curves etc
              EEbyRailsbyFaces
              Pre-pick the ProfileFace

              • you run the tool
                Pick the profiles as with EEbyRails...

              BUT it shouldn't dump out like that.
              I have tried to replicate this and got it too...

              I have a fix - publishing it soonest... πŸ˜’

              TIG

              1 Reply Last reply Reply Quote 0
              • C Offline
                chrisjk
                last edited by 20 Feb 2010, 19:32

                TIG,
                True, I was jumbling the threads, I got confused here :-
                Screen shot 2010-02-20 at 19.26.48.png

                Face - Faces..

                and went on to see which of the plugins was actually giving me colours and got hung up on EEBRF. A different naming scheme would make it easier for us mortals! After all, EEBRBF extrudes a selected face along chosen edges, so something like "ExtrudeaFacebyRails" could help differentiate it better.

                Chris

                1 Reply Last reply Reply Quote 0
                • T Offline
                  TIG Moderator
                  last edited by 20 Feb 2010, 20:59

                  I puzzled long about the names πŸ˜’
                  I have a fix for that glitch but it's made another - offsetting the colored lines !
                  I'll fix it tomorrow... πŸ’­ ➑

                  TIG

                  1 Reply Last reply Reply Quote 0
                  • P Offline
                    pilou
                    last edited by 14 Mar 2010, 03:53

                    about a quarter circle
                    there is a divergence: I understant that is perpendicular to the last segment,
                    but it is annoying for make a perfect quarter volume! ❓
                    quartercircle.jpg

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

                    1 Reply Last reply Reply Quote 0
                    • T Offline
                      TIG Moderator
                      last edited by 14 Mar 2010, 22:10

                      EEbyFace is a kind of 'FollowMe' and you will get un-square ends - use EEbyLathe to be perfect solid by revolution - simply select the face+edges and an axis centered on the arcs cpt... πŸ˜•

                      TIG

                      1 Reply Last reply Reply Quote 0
                      • M Offline
                        magnato
                        last edited by 31 Mar 2010, 11:46

                        Is there a plugin that can delete all the faces in a structure, leaving it with only the edges? I would like to use the nice Extrude Edges by Face plugin to create a typical steel-like structure.

                        Magnar


                        I would like to make a structure with steel beams

                        1 Reply Last reply Reply Quote 0
                        • T Offline
                          TIG Moderator
                          last edited by 31 Mar 2010, 15:56

                          To add/remove things to/from a selection there are several tools [e.g. see thomthom's selection_toys script]...
                          Here's a one liner that takes a selection [it assumes faces and edges are selected, and leaves only faces in the selection - hit delete key to erase faces...]

                          m=Sketchup.active_model;s=m.selection;sa=s.to_a;s.clear;sa.each{|e|s.add(e)if e.class==Sketchup;;Face}
                          

                          Paste it into the Ruby Console and hit return...
                          To make a function wrap it in a 'def' thus:

                          def isolatefaces()
                            m = Sketchup.active_model
                            s = m.selection
                            sa = s.to_a
                            s.clear
                            sa.each{|e|
                              s.add(e) if e.class == Sketchup;;Face
                            }
                          end#def
                          

                          ans save it in a plain text file called isolatefaces.rb in the ../Plugins/ folder.
                          To run it first select somethings, including faces, and type isolatefaces in the Ruby Console - out of the original selection just the faces are now selected - to erase them press the delete key...
                          πŸ€“

                          TIG

                          1 Reply Last reply Reply Quote 0
                          • M Offline
                            magnato
                            last edited by 2 Apr 2010, 22:56

                            It worked! Very Cool!
                            I have find a symbol for this so I remember it when I need this function again !

                            Magnar

                            1 Reply Last reply Reply Quote 0
                            • Z Offline
                              zainulx3
                              last edited by 2 May 2014, 07:18

                              Hi, i've been searching the link to download these extrude plugin(each of the features, faces, edges) but I can't find any.

                              Can you guys give the link beside this link
                              http://sketchucation.com/pluginstore?pln=ExtrudeTools

                              Thanks guys πŸ˜„

                              1 Reply Last reply Reply Quote 0
                              • cottyC Offline
                                cotty
                                last edited by 2 May 2014, 08:49

                                What's wrong with this link?

                                my SketchUp gallery

                                1 Reply Last reply Reply Quote 0
                                • T Offline
                                  TIG Moderator
                                  last edited by 2 May 2014, 10:59

                                  That link [ http://sketchucation.com/pluginstore?pln=ExtrudeTools ] lets you Download the RBZ of all of the tools - click the RED button.
                                  If you have the latest available update for v8 [>=M2] then you can AutoInstall the RBZ contents from the Preferences > Extensions > Install... button [provided you have FULL permissions to the Plugins folder - see this for advice too http://sketchucation.com/resources/tutorials/36-intermediate/811-setting-security-permissions-in-sketchup ]


                                  Capture.PNG

                                  TIG

                                  1 Reply Last reply Reply Quote 0
                                  • D Offline
                                    DoyleZZ
                                    last edited by 21 Dec 2016, 05:51

                                    Hi TIG,I like this plugin so much.But it can not work in SU2017 when i use Extrude Edges by Face

                                    1 Reply Last reply Reply Quote 0
                                    • T Offline
                                      TIG Moderator
                                      last edited by 22 Dec 2016, 16:15

                                      Several of the my "EEby" tools were unexpectedly broken by the way v2017 handles its entities' IDs when exploding a temporary group etc.
                                      I have managed to fix almost all of the wayward code [keeping backward compatibility], however there are a few minor issues outstanding and the beta-testing to complete - I have been out of the loop for a week or two with family matters, but I hope to get back onto fixing these tools asap...

                                      TIG

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

                                      Advertisement