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.
    • MALAISEM Offline
      MALAISE
      last edited by

      Hi Whaat

      It works perfectly. Slide model at section is really a good improvement. ☀

      MALAISE 👍 👍

      La Connaissance n'a de valeur que partagée

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

        immensely 👍
        PS Dale could you add create section cuts from multiplesections all together at once?

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

          Absolutly brilliant and so easy to use! 😎
          Just for quibble "main_menu.add_item("Zorro")" must be "main_menu.add_item("Zorro2")" 😉

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

          1 Reply Last reply Reply Quote 0
          • K Offline
            kwistenbiebel
            last edited by

            @whaat said:

            @kwistenbiebel said:

            I draw the cut line by clicking two points but it doesn't cut. (using the updated version)
            Any errors in the Ruby Console?? Did you read the tutorial?

            I deleted the old zorro.rb and now it works.
            Thank you again for this plugin.

            1 Reply Last reply Reply Quote 0
            • MALAISEM Offline
              MALAISE
              last edited by

              Hi Whaat

              Some difficulties using Zorro2. No cutting effects, the white (feather 😆 ) arrow is gluing to the cut line.
              Let's see my previous post.

              MALAISE 😄

              La Connaissance n'a de valeur que partagée

              1 Reply Last reply Reply Quote 0
              • D Offline
                derryatlanta
                last edited by

                Thanks so much, Whaat.
                Superb job developing and packaging this ruby. I look forward to checking it out today.

                Cheers,

                Nigel

                Stop your grinnin' and drop your linen

                1 Reply Last reply Reply Quote 0
                • S Offline
                  sepo
                  last edited by

                  Thanks for the really good and useful plugin. Is there any chance to have closed section when using with SU section tool.

                  1 Reply Last reply Reply Quote 0
                  • M Offline
                    materialdb
                    last edited by

                    THATS What I've been looking for! Thanks a lot!

                    free vismat materials: http://www.material-db.com

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

                      Awesome plugin! The ability to slice along a section cut face is FANTASTIC! Been waiting for something like that for a while now. Thank you so much!

                      Checkout the Sketchup Graphics Blog at http://sketchupgraphics.com

                      1 Reply Last reply Reply Quote 0
                      • jim smithJ Offline
                        jim smith
                        last edited by

                        Thank you, again, Dale great tool!

                        "Out of clutter find simplicity,
                        from discord find harmony,
                        In the middle of difficulty lies opportunity"
                        Albert Einstein

                        1 Reply Last reply Reply Quote 0
                        • C Offline
                          cyan.archnet
                          last edited by

                          THANK YOU!, will definitely give this awesome plugin a try!

                          1 Reply Last reply Reply Quote 0
                          • A Offline
                            AcesHigh
                            last edited by

                            where can i get the house model displayed on the PDF tutorial? I really like that house and would like to study a bit of american architectural conventions.

                            1 Reply Last reply Reply Quote 0
                            • david_hD Offline
                              david_h
                              last edited by

                              Gracias Senor Zorro. How can our village ever repay you? 💚


                              zorro3.jpg

                              If I make it look easy...It is probably easy

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

                                Quick one. I've deleted the old zorro ruby from plugins folder. How come under Tools menu I see 2 zorros?

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

                                  @unknownuser said:

                                  I've deleted the old zorro ruby from plugins folder. How come under Tools menu I see 2 zorros?

                                  I'm seeing the same thing Chango70...

                                  "Success consists of going from failure to failure without loss of enthusiasm." - Churchill

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

                                    Its not just Zorro. I've deleted a redundent obj importer (can't remember which) yet it still shows up in my menu?!?

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

                                      @unknownuser said:

                                      "main_menu.add_item("Zorro")" must be "main_menu.add_item("Zorro2")"

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

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

                                        It may have been Jim's obj importer (at least that's the only one I know of)

                                        Gai...

                                        1 Reply Last reply Reply Quote 0
                                        • schorradtS Offline
                                          schorradt
                                          last edited by

                                          I added a Feature to your old Version (1.0) to automatic fill faces cut

                                          Sketchup::set_status_text("Draw cut line, Push SHIFT to: Fill-Face-Automatic", SB_PROMPT)

                                          maybe you can added in your current Version? 😄 its nice to have

                                          here is the Code.Snipped:

                                          
                                          ...
                                          if (@key=="shift")
                                            ents.each {|e|
                                             if e.typename == "Edge" then
                                             sel.toggle e
                                             else
                                             sel.remove e
                                             end
                                            }
                                          
                                              self.makeface sel
                                          end
                                          ...
                                          
                                          def makeface ins
                                              ss = ins
                                              total_items = ss.count      # Total count of all selected entities.
                                              x = 0                       # faces-added accumulator
                                              z = 0                       # loop count
                                              notAnEdge = 0               # Accumulator for non-Edges
                                              ss.each {|e|
                                                if e.typename == "Edge" then  # find_faces only works on edges.
                                                   x += e.find_faces          # This creates faces if they can created. Returns # faces created.
                                                else notAnEdge+=1             # Keep track of selections that were not an edge.
                                                   end
                                                z+=1                          # bump loop counter
                                              }
                                          end 
                                          
                                          

                                          http://www.henryschorradt.de/

                                          1 Reply Last reply Reply Quote 0
                                          • W Offline
                                            Whaat
                                            last edited by

                                            @schorradt said:

                                            I added a Feature to your old Version (1.0) to automatic fill faces cut

                                            Thanks! I actually experimented with this feature, as well. However, I found that half the time, the faces that were automatically created were reversed, which became quite annoying. I suppose I could give the user the option if a certain key is pressed (as you have shown). The shift key would not work since it used for inference locking.

                                            SketchUp Plugins for Professionals

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

                                            Advertisement