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

    [Plugin] Draw Boundingbox

    Scheduled Pinned Locked Moved Plugins
    39 Posts 18 Posters 31.2k 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.
    • thomthomT Offline
      thomthom
      last edited by

      Are there alternatives?

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

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

        πŸ‘ πŸ‘ πŸ‘ πŸ‘

        1 Reply Last reply Reply Quote 0
        • bagateloB Offline
          bagatelo
          last edited by

          Why the boundingbox is not attached with object? Why we cannot make boundingbox with only edges?

          While the cat's away, the mice will play

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

            @bagatelo said:

            Why the boundingbox is not attached with object? Why we cannot make boundingbox with only edges?

            No one asked... πŸ˜‰

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

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

              @thomthom said:

              @bagatelo said:

              Why the boundingbox is not attached with object? Why we cannot make boundingbox with only edges?

              No one asked... πŸ˜‰

              Oh yes, please! πŸŽ‰ πŸŽ‰

              1 Reply Last reply Reply Quote 0
              • kenK Offline
                ken
                last edited by

                Thomthom

                Designing and fabricating large but still truck-able steel equipment, I find your plugin an easy to use method to determine the width, height and length of each section for the trucking company. You have made it easier to determine how to arrange a load on the truck bed to minimize the requirements for oversize load permits.

                Thanks

                Ken

                Fight like your the third monkey on Noah's Ark gangway.

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

                  huh - again the simplest of plugins turns out to be of wider usage than I thought. I figured it was a rather obscure request. πŸ˜„

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

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

                    Very useful for my game -- to center models or stretch them appropriately utilizing the length/width/height ratios. Thank you.

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

                      That can be used for packaging too πŸ˜‰

                      Next step will be optimisation of placement of some objects for minimize the Bounding box πŸ˜‰

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

                      1 Reply Last reply Reply Quote 0
                      • kenK Offline
                        ken
                        last edited by

                        @unknownuser said:

                        That can be used for packaging too πŸ˜‰

                        Next step will be optimisation of placement of some objects for minimize the Bounding box πŸ˜‰

                        Now, that would be very useful.

                        Ken

                        Fight like your the third monkey on Noah's Ark gangway.

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

                          Thanks for sharing β˜€

                          1 Reply Last reply Reply Quote 0
                          • mitcorbM Offline
                            mitcorb
                            last edited by

                            @ThomThom:
                            Just out of curiosity, is the bounding box you create even distantly related to the method of producing a convex hull--or is this even relevant?

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

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

                              Nope - it just uses the corner of the boundingbox SketchUp provides.

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

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

                                Hi Thom,

                                Great plugin (again) but blah-blah... you know that.

                                I have noticed however that it can be launched when only primitive geometry (i.e. no group/component) is selected then I can even tell the plugin to create a bounding box but of course nothing happens.

                                Of course, I know why this is happening ("not" happening) so not too big problem but maybe some warning dialog would be best so that users do not get confused.

                                Gai...

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

                                  Couldn't you simply make a temporary group of all selected and then get the bounds of that?

                                  ents=model.active_entities
                                  ss=model.selection
                                  enta=ss.to_a
                                  gp=ents.add_group(enta)
                                  bb=gp.bounds
                                  ### store that data
                                  gp.explode
                                  ### make the bbox
                                  ss.add(enta)
                                  ### OR whatever...
                                  

                                  TIG

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

                                    hm... I thought I had some message system that warned about no valid selection. Must have accidentally removed it as I rewrote it

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

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

                                      I do not mean to create a bounding box for loose geometry - what for? - it's just for other users to avoid confusion.

                                      Also, how about an option that the bounding box is inside/outside of the group/component? (Would be easier to move them together with just one click selection). Of course, in this case there would be the risk of loose geometry merging inside...

                                      Gai...

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

                                        @tig said:

                                        Couldn't you simply make a temporary group of all selected and then get the bounds of that?

                                        ents=model.active_entities
                                        > ss=model.selection
                                        > enta=ss.to_a
                                        > gp=ents.add_group(enta)
                                        > bb=gp.bounds
                                        > ### store that data
                                        > gp.explode
                                        > ### make the bbox
                                        > ss.add(enta)
                                        > ### OR whatever...
                                        

                                        I could just add up the bounds from all the "loose" geometry.

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

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

                                          @gaieus said:

                                          Also, how about an option that the bounding box is inside/outside of the group/component? (Would be easier to move them together with just one click selection). Of course, in this case there would be the risk of loose geometry merging inside...

                                          I was thinking adding to the input box:

                                          Option to group the generated geometry
                                          Option to generate the geometry inside the components they represent.

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

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

                                            OK, I'll stop nagging you now...
                                            πŸ˜‰

                                            Gai...

                                            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