sketchucation logo sketchucation
    • 登入
    Oops, your profile's looking a bit empty! To help us tailor your experience, please fill in key details like your SketchUp version, skill level, operating system, and more. Update and save your info on your profile page today!
    🔌 Smart Spline | Fluid way to handle splines for furniture design and complex structures. Download

    [Plugin] Make Fur v.2.1.0(20140323)

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

      Hi,all.
      I updated to version1.3k.

      Using code "translation.scaling(a)" to "translation.scaling(a,a,a)".(Thanks Thomas.I am always indebted to you.)
      Sangs Scattering.

      Viet nam translation ktslambieng.Thanks 😍

      Text code change to "UTF-8without BOM".and Webdialog setting of Charset ,too.
      On my sketchup(windowsVista,locale Japanese,sketchup v7.1),Ruby written in UTF-8 do not work.loading error.
      So I use UTF-8 without BOM.If there is problem,please tell me.
      Thanks.


      by TAK2HATA

      1 條回覆 最後回覆 回覆 引用 0
      • D 離線
        d12dozr
        最後由 編輯

        Thanks for the wonderful plugin...and the continual updates 👍 😄

        ...and congratulations on making the Sketchupdate!! ☀

        3D Printing with SketchUp Book
        http://goo.gl/f7ooYh

        1 條回覆 最後回覆 回覆 引用 0
        • A 離線
          Aidus
          最後由 編輯

          Thanks tak2hata!
          Now it works!

          CPU: Intel Core i7 Extreme Edition 965
          RAM: OCZ Gold DDR3 1600MHz 12Gb
          Video: Asus Radeon HD4870 X2 2Gb
          Mobo: Asus P6T Deluxe 1366 Intel X58

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

            @tak2hata said:

            On my sketchup(windowsVista,locale Japanese,sketchup v7.1),Ruby written in UTF-8 do not work.loading error.
            So I use UTF-8 without BOM.If there is problem,please tell me.

            I have also gotten problems when I have tried to save .rb files as UTF-8.
            But your HTML files and translation files should be saved as UTF-8.

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

            1 條回覆 最後回覆 回覆 引用 0
            • GaieusG 離線
              Gaieus
              最後由 編輯

              Hm. Updated to the latest (1.3k) version and no fur is made on my system.

              Thom, you use comma as a decimal separator, don't you? How does the plugin work on your system; on mine it's loaded with dots and if I leave it like this, no fur is generated but if I change it to comma (as my system would use) there's no fur either.

              And yes, tak2hata, congrats to the SkecthUpdate Blog (and of course, thanks again for the plugin)
              👍

              Gai...

              1 條回覆 最後回覆 回覆 引用 0
              • B 離線
                bimbachi
                最後由 編輯

                1.3 k not working at all. I have a lot of plugins , hard to find conflict if any.

                1 條回覆 最後回覆 回覆 引用 0
                • D 離線
                  Daniel S
                  最後由 編輯

                  Hi tak2hata
                  The new version 1.3k is not working for me too.
                  Here a screenshot of my ruby console:
                  Captura.JPG
                  Daniel S

                  1 條回覆 最後回覆 回覆 引用 0
                  • B 離線
                    bimbachi
                    最後由 編輯

                    @tak2hata said:

                    Webdialog html add "....charset = 'UTF-8'"
                    Save this plugin in UTF-8(withoutBOM) format.
                    It don't work on my sketchup when using UTF8(withBOM).

                    can anyone help and explain for simple person like me what exatly it means (quote)
                    how to make this "UTF-8(withoutBOM)" on mac ???
                    thanks

                    1 條回覆 最後回覆 回覆 引用 0
                    • GaieusG 離線
                      Gaieus
                      最後由 編輯

                      That's an encoding type to make sure different non-English characters "render" correctly. Like áíűőüöúóé for my language.

                      The file is already encoded in UTF-8 (without BOM) so I guess you should do nothing really. Also, this should not affect the functioning of the plugin - only the appearance of these foreign characters in the webdialog.

                      Gai...

                      1 條回覆 最後回覆 回覆 引用 0
                      • B 離線
                        bimbachi
                        最後由 編輯

                        @gaieus said:

                        That's an encoding type to make sure different non-English characters "render" correctly. Like áíűőüöúóé for my language.

                        The file is already encoded in UTF-8 (without BOM) so I guess you should do nothing really. Also, this should not affect the functioning of the plugin - only the appearance of these foreign characters in the webdialog.

                        thank you

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

                          Hi,

                          V1.3k not working here too. This is a variable type conversion error:
                          line 1443: Error: #<ArgumentError: Cannot convert "0.2" to Length>

                          @ tak2hata:
                          the variable tstr is a string to be converted to a float, and if the decimal separator (in your windows settings I guess) is a dot, it doesn't work.
                          Try: "0.2".to_l in the console, and you'll get: Error: Cannot convert "0.2" to Length>
                          Try: "0,2".to_l and you'll get 7.8740157480315 (inches)
                          Try: "0.2".to_f.to_l and it works, but returns 0.2 (inches) which is false.(0.2m != 0.2inch of course)
                          Try: "0.2".to_f.m, it works and you'll get 7.8740157480315 (inches)

                          Hope this helps,

                          DB

                          1 條回覆 最後回覆 回覆 引用 0
                          • T 離線
                            tak2hata
                            最後由 編輯

                            I update to verison1.3L.
                            Sorry, in previous version,I change the value converting method.
                            I want to fix the problem that "-50mm".to_l.to_s turn to "~ -0'" , when sketchup units setting is "Feets",etc.
                            Problem in previous version caused to that.
                            I returned it to older version.

                            I think that it moves perhaps.
                            Thanks.


                            by TAK2HATA

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

                              Hi,

                              V1.3L not working either: no error message, no fur, nothing happens 😲

                              EDIT: it works if I switch the model units to inches. There's definitely something wrong with unit management.

                              Doesn't work if I set "root width" to "0,5" but works with "1,1", same goes with "length" parameter, so I think that
                              @unknownuser said:

                              the problem that "-50mm".to_l.to_s turn to "~ -0'"
                              is not fixed yet.

                              DB

                              1 條回覆 最後回覆 回覆 引用 0
                              • F 離線
                                Fletch
                                最後由 編輯

                                @massimo said:

                                @unknownuser said:

                                Fletch, your leaves are not overlaping! how did you achieve that?

                                Perhaps he deleted some overlapping components later? 😉

                                Glad you like it... I do too! 😄

                                No. I deleted nothing.
                                There are 12 new leaves we made (free) for licensed users of Twilight... available here.... along with a video tutorial and the practice scene.

                                Twilight Render also has no problems exporting these 2400 leaf instances in this image (took about 1sec. to process the file) and they render perfectly.

                                The "secret" to not overlapping is that the leaf component is made to be at approx. 15 degree angle away from the face, the way they grow.

                                But yes, the sizes and angle should perhaps be "jittered" or "changed" a bit more... it was just a quick test. 😉

                                Fletch
                                Twilight Render Cross-platform Plugin for SketchUp on PC or Mac

                                1 條回覆 最後回覆 回覆 引用 0
                                • T 離線
                                  tak2hata
                                  最後由 編輯

                                  Hi,all.
                                  I update to verison1.3m.
                                  It changes LengthPrecision temporary.
                                  So using units "m" has no problem , now.(perhaps).

                                  Thanks.


                                  by TAK2HATA

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • GaieusG 離線
                                    Gaieus
                                    最後由 編輯

                                    Yes, this is working, thank tak2hata!
                                    I can make fur again
                                    😍
                                    (now just exploring all the settings...)


                                    furry-chair.jpg

                                    Gai...

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • JClementsJ 離線
                                      JClements
                                      最後由 編輯

                                      Gaieus: That's Shaga-delic.

                                      John | Illustrator | Beaverton, Oregon

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • S 離線
                                        saturne45
                                        最後由 編輯

                                        Hello, very great job... make fur is very nice. thank you.

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • T 離線
                                          tald311
                                          最後由 編輯

                                          Thank you. This is great.

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

                                            Been playin'....this is very cool! I hope PETA doesn't get wind of this 🤣
                                            Thanks very much for this!!!
                                            Jeff

                                            Have I mentioned how much of a laugh I get out of some of the Signatures on here!

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 26
                                            • 27
                                            • 28
                                            • 29
                                            • 30
                                            • 31
                                            • 32
                                            • 33
                                            • 28 / 33
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement