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

    [Plugin] Zorro2 (beta)

    Scheduled Pinned Locked Moved Plugins
    314 Posts 154 Posters 347.7k Views 154 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.
    • GaieusG Offline
      Gaieus
      last edited by

      Hi Lauren,

      The format is *.rb ("ruby") and you actually do not need to open it with anything but simply save the file in this folder:
      C:\Program Files\Google\Google SketchUp 8\Plugins\

      If you want to open it, it is actually a "simple" text file with this *.rb extension so use Notepad (coming with Windows by default). Do NOT use a Word processor like MS World as it adds some special characters to line ends and such.

      Gai...

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

        Is it likely that the "bug splat" error will be corrected in the Zorry plugin? I absolutely love the plugin but it's always a challenge to make it work without too many "splats" :S ? πŸ˜„

        1 Reply Last reply Reply Quote 0
        • C Offline
          ckho1985
          last edited by

          blug splat!!!! arrrrgh (banging my head...)

          would be a most-wanted tool if bug is fixed on slicing a section plane.

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

            This plug-in is just what I need. However I am getting a "bug splat" everytime i try to use it... any suggestions??

            @whaat said:

            Time for an update of Zorro. I think this release is much more polished than the first one. Plus, you now finally have the ability to render section cut views.

            New Features:

            -made cuts work with parallel projection views
            -added slice model at section plane (right click on a section plane for context menu)
            -added nested cuts using CTRL modifier
            -improved precision of cuts

            Somes notes on this release:

            • It is recommended to use 'Slice model at Section' on a backup of your SKP file. It is a destructive process.
            • Cutting through nested components results in creation of many unique components
            • Some code was used with permission from TIG's SectionCutFace script to create a cutting plane from a section plane. Thanks!
            • Script should work for older versions of SU and also on Mac systems

            I am calling this a beta version so please post any bugs or requests in this thread. Enjoy!

            EDIT: Updated version now attached which should fix the problems that have been reported. Also added tutorial.

            Whaat

            1 Reply Last reply Reply Quote 0
            • E Offline
              erentumer
              last edited by

              when I try to slice from section plane sketchup turns off does anyone know why it closes itself?

              1 Reply Last reply Reply Quote 0
              • C Offline
                chango70
                last edited by

                I think it crash with nested components and groups. I use it only when I've exploded everything.

                1 Reply Last reply Reply Quote 0
                • thomthomT Offline
                  thomthom
                  last edited by

                  I got a model that produces bugsplat when I try to use Zorro with it. I select the Section Cut and click "Slice Model at Section" - BugSplat!
                  😞


                  Crashed SketchUp

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

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

                    It's a simple thing to do manually, without Zorro.
                    Make a group at the section-cut, explode it and intersect its geometry with model.
                    Take a side view, perspective off, and select everything above the cut and group it, repeat below the cut, move the groups apart...ZorroCrashSplit.PNGZorroCrashSplit.skp

                    TIG

                    1 Reply Last reply Reply Quote 0
                    • thomthomT Offline
                      thomthom
                      last edited by

                      @tig said:

                      It's a simple thing to do manually, without Zorro.

                      That was just a small part of my model. The original got many more components...

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

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

                        It's the groups/components that take the time and cause the splats!

                        TIG

                        1 Reply Last reply Reply Quote 0
                        • thomthomT Offline
                          thomthom
                          last edited by

                          @tig said:

                          It's the groups/components that take the time and cause the splats!

                          My sample model doesn't have any groups/components. Just edges and faces...

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

                          1 Reply Last reply Reply Quote 0
                          • Rich O BrienR Offline
                            Rich O Brien Moderator
                            last edited by

                            Isn't the Zorro tool in Artisan more stable than this version?

                            Download the free D'oh Book for SketchUp πŸ“–

                            1 Reply Last reply Reply Quote 0
                            • thomthomT Offline
                              thomthom
                              last edited by

                              @unknownuser said:

                              Isn't the Zorro tool in Artisan more stable than this version?

                              Just tried the Knife tool - crashed SU, without bugsplat.

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

                              1 Reply Last reply Reply Quote 0
                              • Rich O BrienR Offline
                                Rich O Brien Moderator
                                last edited by

                                Did you try a series of cuts rather than just one? I find that helps sometimes!

                                Download the free D'oh Book for SketchUp πŸ“–

                                1 Reply Last reply Reply Quote 0
                                • dukejazzD Offline
                                  dukejazz
                                  last edited by

                                  I love useing this plugin Zorro2,
                                  So I added a icon to the tool bar.

                                  If you want to do this too,
                                  then paste these lines between the last end statment of zorro2.rb and its file_loaded("Zorro2.rb")
                                  useing notepad

                                  end

                                  #----copy this----------

                                  adds a icon to tool bar

                                  remeber to add the attachent zorro2.jpg to plugins folder

                                     if( not file_loaded?("Zorro2.rb") )
                                  tt_hh = UI::Toolbar.new "Zorro2"
                                  cmd = UI::Command.new("Zorro2 ")  {(Sketchup.active_model.select_tool Zorro2Tool.new)}
                                  cmd.small_icon = "zorro2.jpg"
                                  cmd.large_icon = "zorro2.jpg"
                                  cmd.tooltip = "Zorro2"
                                  tt_hh.add_item cmd
                                  

                                  tt_hh.show
                                  end
                                  #add is compleated
                                  #---copy to here---------------

                                  file_loaded("Zorro2.rb")


                                  zorro2.jpg

                                  1 Reply Last reply Reply Quote 0
                                  • X Offline
                                    xplode35
                                    last edited by

                                    Seems like this plugin badly needs an update. Nothing's changed in 2 years???

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

                                      Why fix something that is not broken? There are much older plugins still performing perfectly what they were designed for 5-6 years ago.

                                      Gai...

                                      1 Reply Last reply Reply Quote 0
                                      • Bob JamesB Offline
                                        Bob James
                                        last edited by

                                        Beta for two years 😲 πŸ˜„

                                        i7-4930K 3.4Ghz, 2x GTX780 6GB, 32GB DDR3-1600 ECC, OCZ Vertex 4 500GB, WD Black 3TB, 32TB NAS, 4x 27" Monitors, SpaceMouse Pro, X-keys XK-60

                                        1 Reply Last reply Reply Quote 0
                                        • thomthomT Offline
                                          thomthom
                                          last edited by

                                          @bob james said:

                                          Beta for two years 😲 πŸ˜„

                                          It's the Google-way! πŸ˜‰ πŸ˜„

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

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

                                            This is a great plugin, but it's not working for me with the model I'm working on now. The model is large and complex. Is that what's causing it to crash when trying to cut at the section?

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 8
                                            • 9
                                            • 10
                                            • 11
                                            • 12
                                            • 15
                                            • 16
                                            • 10 / 16
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement