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

    [Plugin] Component Spray Tool 1.3.

    已排程 已置頂 已鎖定 已移動 Plugins
    92 貼文 44 Posters 91.2k 瀏覽 44 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • TIGT 離線
      TIG Moderator
      最後由 編輯

      If you read the PDF help file you'd see that Component Spray Tool is accessed from a pop-out menu in Draw Menu NOT the Plugins Menu !CStool.png

      TIG

      1 條回覆 最後回覆 回覆 引用 0
      • R 離線
        rangrstudio
        最後由 編輯

        @tig said:

        If you read the PDF help file you'd see that Component Spray Tool is accessed from a pop-out menu in Draw Menu NOT the Plugins Menu ![attachment=0:2qfvuyqu]<!-- ia0 -->CStool.png<!-- ia0 -->[/attachment:2qfvuyqu]

        Thank you! I guess I should read the whole manual...

        This is an amazing tool.

        1 條回覆 最後回覆 回覆 引用 0
        • FrederikF 離線
          Frederik
          最後由 編輯

          This is a GREAT tool...
          Would it be possible to make an option, where components sprayed don't intersect with each other...??
          It's possible to prevent stacking, but I miss an option, where components don't intersect also...

          Perhaps even an option, where I can define how close components can be to each other...
          Could have both positive and negative entries...
          Any ideas...??

          Cheers
          Kim Frederik

          1 條回覆 最後回覆 回覆 引用 0
          • soloS 離線
            solo
            最後由 編輯

            Yes please, I have the same issue where I need to mass some proxies but the boxes I'm using are all stacked and intersecting, maybe a collision checkbox?

            http://www.solos-art.com

            If you see a toilet in your dreams do not use it.

            1 條回覆 最後回覆 回覆 引用 0
            • C 離線
              csolar
              最後由 編輯

              I've just installed this (SU 7.1, WinXP), and I have a question about the spray pressure parameter. In the user guide it says that the # of components dropped is calculated as:

              [area of surface]/[average area of component(s)]*[spray pressure]

              In my case, the surface is a 10x10 square, and the component is a 1x1 square -- so the surface is 100 times the component area. If I select a spray pressure of 10%, I would expect 10 components to be dropped, but what I get is 100 components. Basically this calculation seems to be off by a factor of 10: if I ask for 100% pressure, then 1000 components get dropped, and so on.

              Am I missing something? I ask because for my model I really need lower densities; i.e. in line with the calculation described in the guide.

              Thanks,

              Chris.

              1 條回覆 最後回覆 回覆 引用 0
              • C 離線
                csolar
                最後由 編輯

                Another observation:

                I select "random rotate", but when I look at the results it's clear that only 6 specific rotation angles are being used...actually more like 3 pairs of angles, 120 degrees apart, with the items in each pair being 8 degrees apart. Is this expected?

                Thanks, Chris.

                1 條回覆 最後回覆 回覆 引用 0
                • Didier BurD 離線
                  Didier Bur
                  最後由 編輯

                  Hi csolar,
                  Do you have set any angle snapping ?

                  DB

                  1 條回覆 最後回覆 回覆 引用 0
                  • FrederikF 離線
                    Frederik
                    最後由 編輯

                    Hi Didier,

                    Any chance of adding what Solo and I have requested...??

                    Cheers
                    Kim Frederik

                    1 條回覆 最後回覆 回覆 引用 0
                    • C 離線
                      csolar
                      最後由 編輯

                      @didier bur said:

                      Do you have set any angle snapping ?

                      I did, but the results are the same after I turned off angle snapping.

                      1 條回覆 最後回覆 回覆 引用 0
                      • Didier BurD 離線
                        Didier Bur
                        最後由 編輯

                        @unknownuser said:

                        Any chance of adding what Solo and I have requested...?

                        Yes. The only question is: when ? 😕

                        DB

                        1 條回覆 最後回覆 回覆 引用 0
                        • FrederikF 離線
                          Frederik
                          最後由 編輯

                          @didier bur said:

                          Yes.

                          @didier bur said:

                          The only question is: when ? 😕

                          👊
                          Hopefully soon...

                          Cheers
                          Kim Frederik

                          1 條回覆 最後回覆 回覆 引用 0
                          • thomthomT 離線
                            thomthom
                            最後由 編輯

                            Didier:

                            If you replace the native model.raytest with this method the rays won't stop on invisible entities:

                            
                              # Raytrace method that does not stop on hidden entities.
                              def self.raytest(ray)
                                model = Sketchup.active_model
                                vector = ray[1]
                                while true
                                  # Shot ray
                                  test = model.raytest(ray)
                                  return nil if test.nil?
                                  # Verify visibility
                                  point, path = test
                                  if path.all? { |e| e.visible? && e.layer.visible? }
                                    return test
                                  else
                                    # raytest stopped on a hidden entity - create a new ray from that point
                                    # and let the loop continue until it hits something visible, or nothing.
                                    ray = [ point, vector ]
                                  end
                                end # while
                              end
                            
                            

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

                            1 條回覆 最後回覆 回覆 引用 0
                            • Didier BurD 離線
                              Didier Bur
                              最後由 編輯

                              Hi tt,
                              💭 💭 💭 💭 💭 💭

                              DB

                              1 條回覆 最後回覆 回覆 引用 0
                              • I 離線
                                inbal
                                最後由 編輯

                                thank so much 😄

                                1 條回覆 最後回覆 回覆 引用 0
                                • L 離線
                                  lapx
                                  最後由 編輯

                                  Problems with component spray tool...Tool will not pick point after clicking.
                                  Is anyone else have problems with the tool? All the parameters appear correct.
                                  I'm placing byce on a simple plane is not working. Openig a new drawing helped but it always goes back to not working at some point.

                                  I'm using in V6.

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • charly2008C 離線
                                    charly2008
                                    最後由 編輯

                                    Hi,

                                    I wanted to try compo spray but I get a huge number of components at a small circle. What am I doing wrong?

                                    Charly


                                    compo1.JPG


                                    compo2.JPG

                                    He who makes no mistakes, makes nothing

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • Didier BurD 離線
                                      Didier Bur
                                      最後由 編輯

                                      Hi,
                                      Did you draw a great circle (20m or so) or a small one (2m or so) ?
                                      But don't worry, since FaceMe components don't really have a bounding box, the number of components to be created is wrong, if I remember well...
                                      Regards,

                                      DB

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • charly2008C 離線
                                        charly2008
                                        最後由 編輯

                                        Hi Didier,

                                        The circle was about three meters. I tried the whole day. If i use it at a single line or a point then i get very small copies.

                                        Charly


                                        compo.JPG


                                        Untitled.skp

                                        He who makes no mistakes, makes nothing

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • charly2008C 離線
                                          charly2008
                                          最後由 編輯

                                          For the above mentioned problem i found the solution. The values for Low and high scale where to less.

                                          But now although Keep vertical is selected, the tree is horizontal. For this I could not find the reason.

                                          Charly


                                          Unbenannt.JPG

                                          He who makes no mistakes, makes nothing

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • charly2008C 離線
                                            charly2008
                                            最後由 編輯

                                            Hi,

                                            I found the error. This component was the reason. After I exploded the component and made it a new component, the error was gone.

                                            Charly

                                            He who makes no mistakes, makes nothing

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 4 / 5
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement