sketchucation logo sketchucation
    • Login
    โ„น๏ธ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    [Plugin] Solids Trim and Keep (Pro Only)

    Scheduled Pinned Locked Moved Plugins
    34 Posts 12 Posters 30.6k Views 12 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.
    • bmikeB Offline
      bmike
      last edited by

      Nice... will give it a go!

      mike beganyi design + consulting llc

      1 Reply Last reply Reply Quote 0
      • irwanwrI Offline
        irwanwr
        last edited by

        is this OSCoolean plugin have any similarity with this Solids Trim and Keep plugin?

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

          I think it is similar to the Solid Tools. You should give it a try.

          Etaoin Shrdlu

          %

          (THERE'S NO PLACE LIKE)

          G28 X0.0 Y0.0 Z0.0

          M30

          %

          1 Reply Last reply Reply Quote 0
          • bmikeB Offline
            bmike
            last edited by

            Very nice!
            Been looking for this for a long long time!
            This is the way Solid components should act with the native solid tools.

            SketchUp Team:
            If I wanted to trim a group, I would have done so!

            Thanks much for this.

            mike beganyi design + consulting llc

            1 Reply Last reply Reply Quote 0
            • irwanwrI Offline
              irwanwr
              last edited by

              @dave r said:

              I think it is similar to the Solid Tools. You should give it a try.

              it seems that OSCoolean is a good tool. though it doesn't really work well when i tried to use it. perhaps it needs some updates or something. i don't know for sure.

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

                The BooTools works very well I think it was 10 bucks but well worth the money. It edits the selected component however it deletes the component used to do the editing so if you want both after the operation make a copy of the cutting component. I use it with the free version and have been very plesed

                Keith

                1 Reply Last reply Reply Quote 0
                • irwanwrI Offline
                  irwanwr
                  last edited by

                  @ktkoh said:

                  The BooTools works very well I think it was 10 bucks but well worth the money. It edits the selected component however it deletes the component used to do the editing so if you want both after the operation make a copy of the cutting component. I use it with the free version and have been very plesed

                  Keith

                  which free version and where, Keith?

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

                    @irwanwr said:

                    @ktkoh said:

                    The BooTools works very well I think it was 10 bucks but well worth the money. It edits the selected component however it deletes the component used to do the editing so if you want both after the operation make a copy of the cutting component. I use it with the free version and have been very plesed

                    Keith

                    which free version and where, Keith?

                    I think he was referring to the free version of sketchUp.

                    Etaoin Shrdlu

                    %

                    (THERE'S NO PLACE LIKE)

                    G28 X0.0 Y0.0 Z0.0

                    M30

                    %

                    1 Reply Last reply Reply Quote 0
                    • irwanwrI Offline
                      irwanwr
                      last edited by

                      i see. thank you Dave.
                      well, 10 bucks in a 3rd world country wont be easy to get. ๐Ÿ˜›
                      meanwhile, i guess i'll just stick to Curviloft. it needs some wireframing to do and it does do it's job very well for skinning ๐Ÿ˜„

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

                        How could I overlook this plugin??? ๐Ÿ˜ฎ

                        Thanks Jim!!! ๐Ÿ‘

                        Gai...

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

                          Hi,
                          its works to SketchUp 2014????

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

                            @rodrigolee said:

                            Hi,
                            its works to SketchUp 2014????
                            Install it in v2014 Pro and try it... report back...

                            TIG

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

                              @tig said:

                              @rodrigolee said:

                              Hi,
                              its works to SketchUp 2014????
                              Install it in v2014 Pro and try it... report back...

                              Someone tried to install the v2014 before? Isnt working with me.

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

                                This was done just a moment ago with Trim and Keep in SU2014. I would have to conclude the plugin works. Are you using SU2014 Pro? Your profile still shows you are using SU8.

                                Screenshot - 7_10_2014 , 4_34_01 AM.png

                                Etaoin Shrdlu

                                %

                                (THERE'S NO PLACE LIKE)

                                G28 X0.0 Y0.0 Z0.0

                                M30

                                %

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

                                  The Plugin does works fine with all SketchUp versions [>=8].

                                  Note that it runs from a 'Tools' menu item - 'Trim & Keep'...

                                  However, it does have one glitch...
                                  It always works fine with Solid Component-Instances, BUT it fails if the second picked object is a Solid Group.

                                  See the Ruby Console errors...

                                  This fail/error is sidestepped if you have other some other script loading which itself adds a group.definition method.

                                  A simple fix is to either also have one of those other scripts loading, OR to edit the jf_trim_and_keep.rb file using a plain-text editor like Notepad/Notepad++/TextWrangler [NEVER a wordprocessor!]...

                                  Add this extra code on the very end of the file's text and save it, restart Sketchup and try using the tool on Solid Groups again - it will then work fine with Solid Component-Instances AND Groups:

                                  class Sketchup;;Group
                                      unless Sketchup;;Group.method_defined?(;definition)
                                          def definition()
                                            if self.entities.parent.instances.include?(self)
                                              return self.entities.parent
                                            else
                                              Sketchup.active_model.definitions.each{|definition|
                                                  return definition if definition.instances.include?(self)
                                              }
                                            end
                                            return nil # This should never happen !
                                          end
                                      end#if
                                  end#class
                                  
                                  

                                  TIG

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

                                    Maybe that's it. The poster might be using groups instead of components. I didn't ask that because this plugin was written to work on components and keep them components after modifying them.

                                    @unknownuser said:

                                    This plugin allows you to trim a Component and have all instances update as well.

                                    If the object getting trimmed is a group, there's no reason not to use the Trim tool from the Solid Tools set.

                                    Etaoin Shrdlu

                                    %

                                    (THERE'S NO PLACE LIKE)

                                    G28 X0.0 Y0.0 Z0.0

                                    M30

                                    %

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

                                      Unfortunately it does allow you to click on a Group, which causes the issue without a group.definition method available...
                                      This tool does still have a use with Solid Groups, because then its result maintains the same name etc, the native tool messes up... it's renamed 'Difference'... and of course it loses its other properties like layer ?

                                      TIG

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

                                        True, although I'm hoping for a change in that behavior along with the conversion from components to groups in the near future.

                                        Etaoin Shrdlu

                                        %

                                        (THERE'S NO PLACE LIKE)

                                        G28 X0.0 Y0.0 Z0.0

                                        M30

                                        %

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

                                          I was wondering if there is a way to add this plugin to the main toolbar. Thanks.

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

                                            There isn't a toolbar for it. I use this plugin frequently, though, and set up a keyboard shortcut for it. That's better for me than another toolbar button.

                                            Etaoin Shrdlu

                                            %

                                            (THERE'S NO PLACE LIKE)

                                            G28 X0.0 Y0.0 Z0.0

                                            M30

                                            %

                                            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