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

    Move groups with different measures?

    Scheduled Pinned Locked Moved Developers' Forum
    55 Posts 4 Posters 28.7k Views 4 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.
    • pilouP Offline
      pilou
      last edited by

      
      model = Sketchup.active_model
      entities = model.entities
      selection = model.selection
      groups = []
      z=0
      
      selection.each do |e| # update!
        # Skip all entities that aren't groups
        next unless e.is_a? Sketchup;;Group
        # Now we process the groups
           point = Geom;;Point3d.new 0,0,z
        t = Geom;;Transformation.new point
        # Apply the transformation
        e.transform!(t)
        z = z*2 + 100
      end
      

      Perfect ๐Ÿ‘ (I put the z=z*2+100 at the end for have the first group of selection with no move)
      Last thing I obtain 254 cm ( I suppose that is a conversion between inch/cm ?)
      My first volume is at level z = 0 and I work in cm

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

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

        Pilou

        Do you want to move each of the selected groups by the same amount (my code - e.g. 100.mm) or by an ever changing amount ?

        If you want it to change then you need to define how, and add this into the loop - e.g. z=1..... then loop... z += 2*z
        exponential type increase !

        If you are applying different offsets, and you have made the groups in order, then the increments will apply in that way; but it would be possible to 'stack' groups made at different times and the loop would process then in their made order, but not the 'stacked' order you want ! Perhaps you need to add in another test... for each of the group.bounds.min.z. which sorts them by their relative heights, so at least the groups array would be in the height order you expect...

        TIG

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

          @unknownuser said:

          If you want 100mm type 100.mm

          Yes! Works like a charm! โ˜€
          For my first one that was not like a true romance but with your help, ThomThom, Tig (yet a lot of cryptic for me ๐Ÿ˜„, and the Chris tutorial and a dash of milk of Tod Burch
          Many thx for the helps ๐Ÿ˜Ž

          Next will maybe an "explode view" of several groups ๐Ÿ˜„
          Just need to know position of a group ๐Ÿ˜„

          PS @ Tig Sorry but I had no chance with yours! (see previous page) ๐Ÿ˜ฒ
          And yes I want any sort of increments so now I can have any sort of it! Thx! โ˜€
          Just play with parameters ๐Ÿ˜„
          I keep your group.bounds.min.z. trick in my mind!


          eclatรฉ.jpg

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

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

            for a completely random offset try

            
            selection.each do |e|
                next unless e.is_a? Sketchup;;Group
                ###point = Geom;;Point3d.new 0,0,(1000.mm * rand)
                ### offset in Z somewhere between 0m and 1m - 'rand' makes a random number 0><1
                point = Geom;;Point3d.new (1000.mm * rand),(1000.mm * rand),(1000.mm * rand)
                ### offset in all XYZ axes by 0 to 1m
                t = Geom;;Transformation.new point
                e.transform!(t)
            end
            

            Swap the ### between the different points = to see the effect

            TIG

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

              The entities are not returned in their order in z height. You would need to sort the objects by their Z position before applying the transformations.

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

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

                Before testing your new randomizer plug ๐Ÿ˜„

                I have a little problem ๐Ÿ˜„
                I have used "Grow" by Tig for make the "volume" on the left (50 groups), then my "Plug" Thomthomised ๐Ÿ˜’
                with a normal interval of course!
                Seems there is something wrong somewhere ๐Ÿ˜ฎ
                Groups are not recorded following the "grow" generation?


                humhum.jpg

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

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

                  So i must use the Tig Advertissement more soon than I have expected ๐Ÿ’š

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

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

                    This group.bounds.min.z. can be found somewhere or the sorting of Groups must be forged again?
                    (nothing about sort, sorting in the API helping) ๐Ÿ˜ฎ

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

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

                      Build a hash with the entities as the key and their Z posiiton as value and then sort the hash by the values.

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

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

                        Each groups has not a "time creation" trace board? So no need to remake a sorting ?
                        Seems I have re-open a new nightmare door ๐Ÿ’š

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

                        1 Reply Last reply Reply Quote 0
                        • Chris FullmerC Offline
                          Chris Fullmer
                          last edited by

                          Awesome Pilou! Keep it up, its looking great. You've got lots of good help around here.

                          Chris

                          Lately you've been tan, suspicious for the winter.
                          All my Plugins I've written

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

                            Try something like...

                            
                            zeds=[]
                            index=0
                            groups.each{|group|
                               zeds.push(group.bounds.min.z, index)
                               index+=1
                            }
                            zeds.sort!
                            sorted_groups=[]
                            zeds.each{|z|sorted_groups.push(groups[z[1]]) }
                            ### sorted_groups is now groups sorted by Z
                            
                            

                            TIG

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

                              Does the group.bounds.min.z only valuable in SU 7?
                              Edit seems not ๐Ÿ˜„

                              little try but seems I miss something ๐Ÿ˜„ (any doubt selection but the sorted_groups gives nothing on the screen)

                              model = Sketchup.active_model
                              entities = model.entities
                              selection = model.selection
                              groups = []
                              z=0
                              zeds=[]
                              index=0
                              groups.each{|group|
                                 zeds.push(group.bounds.min.z, index)
                                 index+=1
                              }
                              zeds.sort!
                              sorted_groups=[]
                              zeds.each{|z|sorted_groups.push(groups[z[1]]) }
                              ### sorted_groups is now groups sorted by Z
                              
                              sorted_groups.each do |e| 
                                point = Geom;;Point3d.new 0,0,z
                                t = Geom;;Transformation.new point
                                e.transform!(t)  
                                z =  z + 1000.mm
                              end
                              

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

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

                                it's like a snowball on the top of the mountain ๐Ÿ˜„

                                http://www.id2sorties.com/id2photos/5907205456neig.jpg

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

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

                                  groups = [] then nothing set !!!
                                  You emptied the groups array...
                                  You need to fill it from the selection... ๐Ÿค“

                                  groups=[];selection.each{|entity|groups.push(entity) if entity.kind_of?(Sketchup;;Group)}
                                  

                                  TIG

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

                                    another try found: undefined method โ€˜[]โ€™ ๐Ÿ˜•

                                    model = Sketchup.active_model
                                    entities = model.entities
                                    selection = model.selection
                                    
                                    z=0
                                    zeds=[]
                                    index=0
                                    sorted_groups=[]
                                    
                                    groups=[];selection.each{|entity|groups.push(entity) if entity.kind_of?(Sketchup;;Group)}
                                    
                                    groups.each{|group|zeds.push(group.bounds.min.z, index)
                                       index+=1
                                    }
                                    zeds.sort!
                                    zeds.each{|z|sorted_groups.push(groups[z[1]]) }
                                    ### sorted_groups is now groups sorted by 
                                    
                                    sorted_groups.each do |e| # update!
                                      # Now we process the groups
                                      point = Geom;;Point3d.new 0,0,z
                                      t = Geom;;Transformation.new point
                                      # Apply the transformation
                                      e.transform!(t)
                                      z = z + 100.cm
                                    end
                                    
                                    

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

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

                                      Is that the only error message you get?

                                      @unknownuser said:

                                      it's like a snowball on the top of the mountain ๐Ÿ˜„

                                      You're hooked now! No way back! ๐Ÿ˜‰ ๐Ÿ˜„

                                      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

                                        Here's some tweaked code

                                        def test()
                                            model = Sketchup.active_model
                                          model.start_operation("Move in Z")
                                            entities = model.entities
                                            selection = model.selection
                                        
                                            zeds=[]
                                            index=0
                                            sorted_groups=[]
                                        
                                            groups=[];selection.each{|entity|groups.push(entity) if entity.kind_of?(Sketchup;;Group)}
                                        
                                            groups.each{|group|zeds.push([group.bounds.min.z, index])
                                               index+=1
                                            }
                                            zeds.sort!
                                            zeds.each{|z|sorted_groups.push(groups[z[1]]) }
                                            ### sorted_groups is now groups sorted by
                                        
                                            z = 0.0
                                            sorted_groups.each do |e| # update!
                                              # Now we process the groups
                                              t = Geom;;Transformation.new(Geom;;Point3d.new(0,0,z))
                                              # Apply the transformation
                                              e.transform!(t)
                                              z = z + 100.cm
                                            end
                                            
                                          model.commit_operation
                                          return nil
                                          
                                        end#def
                                        
                                        

                                        Runs as ' test'.
                                        I made a typo - it needed an array [] of two items adding to zeds: zeds.push([group.bounds.min.z, index]) not two 'loose' items as in zeds.push(group.bounds.min.z, index).
                                        I made your z = 0 into z = 0.0 as it needs the number as a float, not an integer...
                                        Removed 'point' variable and set the point definition directly inside the transformation - not necessary but fewer variables...
                                        I added a model.start_operation("")...model.commit_operation so it becomes a one step undo.
                                        I added return nil at end so the Ruby-Console doesn't get clogged with info...

                                        Tested it - it works...

                                        TIG

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

                                          Seems indeed that some corrections were necessary ๐Ÿ˜„
                                          This time works like a charm! Excellent! TIG + Thomthom! Bravo! ๐Ÿ˜Ž
                                          I will see all that more in detail for learn this little cryptic language ! โ˜€
                                          Very funny plug! ๐Ÿ˜‰
                                          For the next Pilou's foolish... ๐Ÿ’š
                                          ...I need to know the "centroรฏd" (xyz) of a "bounding box's group"
                                          Here of course without different measure, just for little test! ๐Ÿ˜„ (click image)


                                          TIGTHOMPilou.jpg

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

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

                                            @unknownuser said:

                                            ...I need to know the "centroรฏd" (xyz) of a "bounding box's group"

                                            centre_point=group.bounds.center
                                            

                                            See http://code.google.com/apis/sketchup/docs/ for all these details ๐Ÿ˜‰

                                            TIG

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

                                            Advertisement