• Login
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.
  • G Offline
    Gaieus
    last edited by 21 Aug 2012, 03:22

    How could I overlook this plugin??? 😮

    Thanks Jim!!! 👍

    Gai...

    1 Reply Last reply Reply Quote 0
    • R Offline
      RODRIGOLEE
      last edited by 4 Jul 2014, 15:40

      Hi,
      its works to SketchUp 2014????

      1 Reply Last reply Reply Quote 0
      • T Offline
        TIG Moderator
        last edited by 4 Jul 2014, 20:43

        @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 9 Jul 2014, 21:37

          @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
          • D Offline
            Dave R
            last edited by 10 Jul 2014, 09:40

            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
            • T Offline
              TIG Moderator
              last edited by 10 Jul 2014, 10:08

              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
              • D Offline
                Dave R
                last edited by 10 Jul 2014, 10:26

                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
                • T Offline
                  TIG Moderator
                  last edited by 10 Jul 2014, 10:51

                  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
                  • D Offline
                    Dave R
                    last edited by 10 Jul 2014, 11:00

                    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 23 Nov 2014, 21:47

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

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        Dave R
                        last edited by 23 Nov 2014, 21:53

                        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
                        • E Offline
                          ebelg2000
                          last edited by 24 Nov 2014, 13:35

                          Thanks Dave

                          1 Reply Last reply Reply Quote 0
                          • A Offline
                            AdventurousConifer
                            last edited by 28 Mar 2017, 22:11

                            This is a real time saver. I'm using Sketchup 2017 on a Mac and notice that I have to reinstall this extension every time I restart Sketchup. Do you have any tips on making it stay installed?

                            1 Reply Last reply Reply Quote 0
                            • D Offline
                              Dave R
                              last edited by 29 Mar 2017, 09:46

                              @adventurousconifer said:

                              This is a real time saver. I'm using Sketchup 2017 on a Mac and notice that I have to reinstall this extension every time I restart Sketchup. Do you have any tips on making it stay installed?

                              How did you install it? What directory did you install it into? My guess is you aren't installing it in the correct location.

                              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