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

    [Plugin] extrudeEdgesByEdges.rb

    已排程 已置頂 已鎖定 已移動 Plugins
    190 貼文 76 Posters 209.8k 瀏覽 76 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • M 離線
      MarkEMark
      最後由 編輯

      WOW Jeff! Thanks!

      I will do what you suggest. Thanks so much.

      I am rather new to this board, and didn't realize this should have been a separate topic, so thanks for the heads up. Next time I'll know. I was thinking all things related to the 'Rails' plug in would be in the same thread, but I see your point and will post accordingly next time.

      Again, many thanks. Oh, and that video is worth a thousand words!

      Mark

      1 條回覆 最後回覆 回覆 引用 0
      • pilouP 離線
        pilou
        最後由 編輯

        @unknownuser said:

        Oh, and that video is worth a thousand words!

        Always the case! ☀

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

        1 條回覆 最後回覆 回覆 引用 0
        • T 離線
          tamfore
          最後由 編輯

          is there any links to text files or pdf that gives a description or instructions on how to use this plugin?

          Thanks
          Tamfore

          1 條回覆 最後回覆 回覆 引用 0
          • thomthomT 離線
            thomthom
            最後由 編輯

            @tamfore said:

            is there any links to text files or pdf that gives a description or instructions on how to use this plugin?

            Thanks
            Tamfore

            Select two Curves and apply Extrude By Edges.

            To convert a set of edges to a Curve - use Weld: http://www.smustard.com/script/Weld

            Thomas Thomassen — SketchUp Monkey & Coding addict
            List of my plugins and link to the CookieWare fund

            1 條回覆 最後回覆 回覆 引用 0
            • TIGT 離線
              TIG Moderator
              最後由 編輯

              They don't need to be 'curves' - they must be two pre-selected groups that each contain some edges [which of course might be curves BUT they can be unconnected edges too - this is unlike it's brother 'EEbyRails' which needs curves to be selected once the tool is activated]...
              There are as usual detailed instructions at the start of these scripts - open in NotePad.exe and read them...

              TIG

              1 條回覆 最後回覆 回覆 引用 0
              • D 離線
                daemawang69
                最後由 編輯

                just wonderful

                1 條回覆 最後回覆 回覆 引用 0
                • T 離線
                  tamfore
                  最後由 編輯

                  thank you!!! I will go look at those detail instructions!!!

                  1 條回覆 最後回覆 回覆 引用 0
                  • T 離線
                    tamfore
                    最後由 編輯

                    @tig said:

                    There are as usual detailed instructions at the start of these scripts - open in NotePad.exe and read them...

                    I could not find what you are referring to when speaking of Detailed instructions at the start of these scripts and open in NotePad.exe Confused with that... I am alittle new to plugins and do not understand that?

                    1 條回覆 最後回覆 回覆 引用 0
                    • TIGT 離線
                      TIG Moderator
                      最後由 編輯

                      @tamfore said:

                      @tig said:

                      There are as usual detailed instructions at the start of these scripts - open in NotePad.exe and read them...

                      I could not find what you are referring to when speaking of Detailed instructions at the start of these scripts and open in NotePad.exe Confused with that... I am a little new to plugins and do not understand that?

                      OK - here's step by step guide...
                      Almost all scripts are .rb files and whilst a few are encrypted most are readily 'readable'.
                      They are just a plain-text files with an alternative suffix so that SUp knows to load them on startup.
                      I am assuming you are v7 on a Vista PC, but if it's v6, XP or a Mac then it'll still be pretty similar...
                      Open the '..\Sketchup 7\Plugins' folder and find the script you want to 'read' - in this case it's called extrudeEdgesByEdges.rb.
                      Select its icon, right-click the mouse and pick 'Open with' in the context-menu [or something equivalent].
                      If the application 'Notepad' is not listed as an option then pick 'Choose Default Program...' and find 'Notepad.exe' [typically it's located in the 'C:\Windows\System32' folder].
                      Either way you'll now be able to set 'Notepad' as the default program to always open .rb files - don't worry about doing this as it will not affect Sketchup's ability to load and run these scripts - it just means that in future when you double-click on a file ending with .rb it'll open in 'Notepad' so you can read it.
                      Note that 'Notepad.exe' is the built-in plain-text editor in Windows - there other similar suitable applications like 'Notepad++' [which is what I use] - it must be a 'plain-text-editor', BUT do not use word-processors like 'Write' or 'Word' as they can leave hidden formating inside a file if you save it and then Sketchup will have problems loading the script !
                      Anyway, you should now have the script open in a Notepad window and you can read its contents.
                      The usual convention is that at the start of the script there's a block of text that explains the script's ownership, copyright, what the script does, how to use it, versions and changes etc etc - these are added as 'comments' to help users, and the text is preceded with a # or it's within a =begin...=end block so that Ruby ignores them when it loads the code.
                      Once you get to a line saying something like require 'sketchup.rb' the code is starting and your eyes should glaze over... it might be interesting occasionally to read such code though to see what the script is doing...
                      The other usual convention is to add any menu code at the end of the script - so to see where it'll load and what it'll be called simply scroll to the end. For 'EEbyEdges' the menu is "Plugins" and it'll be called "Extrude Edges by Edges". You can change the menu to another standard one off the top bar and also any text it has, and save the file [keep a backup copy in case you mess up] - e.g. translate it into your own language. Within the code itself there will be prompts, dialogs etc, and again that text is editable if desired - just remmeber that the text is inside "" [or ''] and respect these "" etc - e.g. UI.messagebox("Select 2 Groups of Edges !\n1st is 'profile' and 2nd 'path'.") - Note that \n is a new line character and \t is a tab character.
                      You'll probably just want to read the script and then close it without saving, BUT if you do change the script and save it these changes will only become apparent when Sketchup is restarted.
                      Happy Sketchup'ing New Year 💭

                      TIG

                      1 條回覆 最後回覆 回覆 引用 0
                      • R 離線
                        romain210
                        最後由 編輯

                        thanks a lot

                        1 條回覆 最後回覆 回覆 引用 0
                        • C 離線
                          cupko
                          最後由 編輯

                          Thanks for this!!

                          1 條回覆 最後回覆 回覆 引用 0
                          • T 離線
                            theark
                            最後由 編輯

                            Fantastic!! Many thanks

                            1 條回覆 最後回覆 回覆 引用 0
                            • T 離線
                              t_gia197
                              最後由 編輯

                              Great. So useful
                              Thanks alot

                              1 條回覆 最後回覆 回覆 引用 0
                              • mitcorbM 離線
                                mitcorb
                                最後由 編輯

                                this post deleted and re posted at Extrude Edges by Rails

                                I take the slow, deliberate approach in my aimless wandering.

                                1 條回覆 最後回覆 回覆 引用 0
                                • mitcorbM 離線
                                  mitcorb
                                  最後由 編輯

                                  This post resubmitted at Extrude Edges by Rails

                                  I take the slow, deliberate approach in my aimless wandering.

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • TIGT 離線
                                    TIG Moderator
                                    最後由 編輯

                                    This post deleted and re posted at Extrude Edges by Rails

                                    TIG

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • TIGT 離線
                                      TIG Moderator
                                      最後由 編輯

                                      This is v2.0 - it's now been deBabelized, with a combined Extrusion Tools Toolbar added and miscellaneous glitches tweaked...
                                      http://forums.sketchucation.com/viewtopic.php?p=166780#p166780

                                      TIG

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • TIGT 離線
                                        TIG Moderator
                                        最後由 編輯

                                        Here's v2.1
                                        A typo meant that the lingvo files didn't translate properly [an ES user spotted it...]
                                        http://forums.sketchucation.com/viewtopic.php?p=166780#p166780

                                        TIG

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • TIGT 離線
                                          TIG Moderator
                                          最後由 編輯

                                          Here's v2.2
                                          Lingvo files updated. FR=Pilou, ES=Defisto.
                                          http://forums.sketchucation.com/viewtopic.php?p=166780#p166780

                                          TIG

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • TIGT 離線
                                            TIG Moderator
                                            最後由 編輯

                                            Here's v2.3 - a typo preventing the plugins menu item working has been corrected. 😳
                                            http://forums.sketchucation.com/viewtopic.php?p=166780#p166780

                                            TIG

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 9
                                            • 10
                                            • 7 / 10
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement