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

    [Plugin] Make Fur v.2.1.0(20140323)

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

      😞 1.3e not working for me.

      Error: #<NoMethodError: undefined method[]' for nil:NilClass>
      C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:734:in fur_dialog_ini' C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:741:in fur_webdialog'
      C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:1414
      C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:1413:in call'

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

      1 條回覆 最後回覆 回覆 引用 0
      • TIGT 離線
        TIG Moderator
        最後由 編輯

        With 1.3e I get Error: #<TypeError: no implicit conversion to float from nil> C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:1326:ininitialize'
        C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:1326:in new' C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:1326:in s_to_vec'
        C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:713:in show_webdialog' C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:658:in call'`
        with the 'web-dialog' accept button.
        You must be passing an empty argument to a defn ?

        TIG

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

          @thomthom said:

          😞 1.3e not working for me.

          Error: #<NoMethodError: undefined method[]' for nil:NilClass>
          C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:734:in fur_dialog_ini' C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:741:in fur_webdialog'
          C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:1414
          C:/Program Files (x86)/Google/Google SketchUp 7/Plugins/fur_en.rb:1413:in call'

          I think this is LengthFormat or LengthPrecision problem.
          So I will change code..

          
          def fur_dialog_ini
          	unitoptions = Hash.new
          	Sketchup.active_model.options["UnitsOptions"].each{|key ,val| unitoptions[key] = val }
          	Sketchup.active_model.options["UnitsOptions"]["LengthFormat"] = 0 if unitoptions["LengthFormat"] != 0
          	Sketchup.active_model.options["UnitsOptions"]["LengthPrecision"] = 1 if unitoptions["LengthPrecision"] == 0
          	@fur_units_metric = false
          	lunit = unitoptions["LengthUnit"]
          	@fur_units_metric = true if lunit >= 2
          	lprec = Sketchup.active_model.options["UnitsOptions"]["LengthPrecision"]
          	@decimal_sep = 1.2.to_l.to_s.match(/\d(\D)\d/)[1]
          	@delim = ","
          	@delim = ";" if @decimal_sep == ','
          	unitoptions.each{|key ,val| Sketchup.active_model.options["UnitsOptions"][key] = val }
          end
          
          

          @tig said:

          With 1.3e I get Error: #<TypeError: no implicit conversion to float from nil> C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:1326:ininitialize'
          C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:1326:in new' C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:1326:in s_to_vec'
          C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:713:in show_webdialog' C:/Program Files/Google/Google SketchUp 7/Plugins/fur_en.rb:658:in call'`
          with the 'web-dialog' accept button.
          You must be passing an empty argument to a defn ?

          Sorry,I will change the code.


          by TAK2HATA

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

            Why are you doing this?

            Sketchup.active_model.options["UnitsOptions"].each{|key ,val| unitoptions[key] = val } Sketchup.active_model.options["UnitsOptions"]["LengthFormat"] = 0 if unitoptions["LengthFormat"] != 0 Sketchup.active_model.options["UnitsOptions"]["LengthPrecision"] = 1 if unitoptions["LengthPrecision"] == 0

            You're changing the model settings.

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

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

              This whole thing makes no sense...

              
                  def fur_dialog_ini
                     unitoptions = Hash.new
                     Sketchup.active_model.options["UnitsOptions"].each{|key ,val| unitoptions[key] = val }
                     Sketchup.active_model.options["UnitsOptions"]["LengthFormat"] = 0 if unitoptions["LengthFormat"] != 0
                     Sketchup.active_model.options["UnitsOptions"]["LengthPrecision"] = 1 if unitoptions["LengthPrecision"] == 0
                     @fur_units_metric = false
                     lunit = unitoptions["LengthUnit"]
                     @fur_units_metric = true if lunit >= 2
                     lprec = Sketchup.active_model.options["UnitsOptions"]["LengthPrecision"]
                     @decimal_sep = 1.2.to_l.to_s.match(/\d(\D)\d/)[1]
                     @delim = ","
                     @delim = ";" if @decimal_sep == ','
                     unitoptions.each{|key ,val| Sketchup.active_model.options["UnitsOptions"][key] = val }
                  end
              
              
              

              You create an hash to store model UnitOptions, then change them and then restore the original values...?

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

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

                From what I could understand, that method could be condensed to:

                    
                    def fur_dialog_ini
                       units = Sketchup.active_model.options["UnitsOptions"]["LengthUnit"]
                       @fur_units_metric = (units >= 2) # true if units are 2 or greater
                       @decimal_sep = 1.2.to_l.to_s.match(/\d(\D)\d/)[1]
                       @delim = (@decimal_sep == ',') ? ";" ; ","
                    end
                
                

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

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

                  Hmmm,
                  When LengthFormat is Architectural or LengthPrecision = 0,
                  "1.2.to_l.to_s.match(/\d(\D)\d/)[1]" return error.

                  Is that problem excluding this?


                  by TAK2HATA

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

                    Ah, yes. I see the problem. ..hm... this needs some more thinking... 😞

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

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

                      Ok - turns out that you can't trust the SU methods to extract the decimal separator as model settings affects the length to string formatting. (Should have thought of that. 😳 )

                      Looking at there seems to mostly be just comma or period as decimal separator. At least if you make that assumption it will cover most.

                      So here is an alternative:

                      
                        def get_decimal_separator
                          # If this raises an error the decimal separator is not '.'
                          '1.2'.to_l
                          return '.'
                        rescue
                          return ','
                        end
                      
                        def fur_dialog_ini
                          @decimal_sep ||= get_decimal_separator
                          @delim ||= (@decimal_sep == ',') ? ";" ; ","
                        end
                      
                      

                      This snippet makes some assumptions:
                      Only comma or period as decimal separator.
                      If the separator is a period then comma is used as list separator.
                      If the separator is a comma then ; is used as list separator.

                      The method is working out the decimal separator is by trial and error.

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

                      1 條回覆 最後回覆 回覆 引用 0
                      • J 離線
                        jchau2007
                        最後由 編輯

                        wow... keep it coming. Thanks.

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

                          I thought of a very cool thing to do with this plugin... those xmas stuff that you put on Xmas trees, you know?? Well, actually this plugin also makes it easy to do the Xmas tree itself.

                          I am talking about this thing that goes around the tree

                          http://downloads.open4group.com/wallpapers/ilustracao-de-arvore-de-natal-74af7.jpg

                          1 條回覆 最後回覆 回覆 引用 0
                          • Rich O BrienR 離線
                            Rich O Brien Moderator
                            最後由 編輯

                            Is v1.3e working for others?

                            Nothing happens when i select it?

                            Download the free D'oh Book for SketchUp 📖

                            1 條回覆 最後回覆 回覆 引用 0
                            • EscapeArtistE 離線
                              EscapeArtist
                              最後由 編輯

                              I did have some issues as well, didn't check the console though. I had a model I'd saved using the previous "make fur" revision and was attempting to use the plugin, nothing happened - dialogue wouldn't open. I opened a "new" scene (File > New) and then the plugin worked.

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

                                I update to version 1.3g.
                                Vector parameter split to 3 parameter each.
                                and I change preset file.
                                I think this vesion has problem yet.

                                For the time being, It going on my sketchup.
                                But very difficult for me to convert units.
                                and so tired.

                                Thanks.


                                by TAK2HATA

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

                                  I appears to work. I'll see if I can get some time to have a better look at your script and see if I can help with the units.

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

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • TIGT 離線
                                    TIG Moderator
                                    最後由 編輯

                                    it seems to work OK now BUT the dialog is getting too tall.
                                    Can't you redo the web-dialog code so that some of the boxes are side-by-side - the XYZ ones could be in a line, so making it 3 input boxes wide, but with each a little narrower would be more manageable ?

                                    TIG

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

                                      Hi ,all.
                                      I update version 1.3h.
                                      WebDialog becomes smaller.
                                      fix problem about defn for Exporter.

                                      Thanks.


                                      by TAK2HATA

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • TIGT 離線
                                        TIG Moderator
                                        最後由 編輯

                                        Thanks - very good...

                                        TIG

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • OxerO 離線
                                          Oxer
                                          最後由 編輯

                                          Hi!

                                          The first, incredible plugin!
                                          I had downloaded the plugin version 1.3a and it works fine, i download the last version 1.3h and it don't works, the plugin appears in the Menu Plugins and the InputBox appears too but when I push OK nothing happens. I use Mac with SU 7.1. I have probed the plugin version 1.3h in SU (Windows) too and don't works. What's the problem?

                                          Certainly, i have done the plugin's translation to spanish language of the two versions, 1.3a (works) and 1.3h (don't works), if you want i send you them.

                                          Bye!

                                          "The result is the end what is important is the process" by Oxer
                                          [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

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

                                            I downloaded 1.3h and I don't see the new dialog, just the old one.

                                            (thanks for the plugin by the way)


                                            fur.png

                                            Nielsen
                                            http://www.tallbridgeguy.com/

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 8
                                            • 9
                                            • 10
                                            • 11
                                            • 12
                                            • 32
                                            • 33
                                            • 10 / 33
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement