sketchucation logo sketchucation
    • Login
    ℹ️ 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)

    Scheduled Pinned Locked Moved Plugins
    650 Posts 255 Posters 1.1m Views 254 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.
    • massimoM Offline
      massimo Moderator
      last edited by

      Really nice images cronicash. πŸ‘

      1 Reply Last reply Reply Quote 0
      • PixeroP Offline
        Pixero
        last edited by

        @richard said:

        Mate you can select the surface and make alternatives to fill the same space so that the components aren't all the same!

        Thats not what I was after.

        Styling fur/hair/grass is a way of...styling it to suite the geometry like combing hair on a head.

        "Guide hairs" is a way of using a few strands too control placement and direction and styling of a at render time full dense fur/grass/hair.

        Here are two links to other fur solutions that explains combing:
        http://www.worley.com/E/Products/sasquatch/combing.html
        http://www.joealter.com/newSite/combing.htm

        1 Reply Last reply Reply Quote 0
        • R Offline
          Ruturaj
          last edited by

          Really nice plugin ......

          Autograss v1 0 .jpg

          Very nice
          Thanks .........

          Thanks,
          RuturaJ

          1 Reply Last reply Reply Quote 0
          • A Offline
            AcesHigh
            last edited by

            @xrok1 said:

            i knew i should have popped that before it got out of hand! 😲
            who would have ever imagined fur for SU?????????????????????????????

            a very hairy nipple?? πŸ˜„ πŸ˜„

            1 Reply Last reply Reply Quote 0
            • E Offline
              ENG. YASEEN
              last edited by

              I Made This By Fur Plugin 😍

              http://i567.photobucket.com/albums/ss118/ALGALY/XYZ4Studioin4.jpg

              😎 πŸ‘
              Thx tak2hata

              My Website:

              http://xyz4studio.blogspot.com/

              1 Reply Last reply Reply Quote 0
              • A Offline
                adityas
                last edited by

                What am I suppose to do after making fun with this tools?
                Should I cry or just shout to tell the author, "THIS IS A SUPER DUPER MARVELOUS PLUGIN!!!"
                Damn good... simple but... (I cant't explain with words).

                1 Reply Last reply Reply Quote 0
                • mariochaM Offline
                  mariocha
                  last edited by

                  Hey many, many thanks man ! impressive plugin.
                  After all, some still think art is easier on grass πŸ˜†


                  Art on Grass.png

                  %(#008000)[Mario C.
                  Every rule has exceptions, but some.]

                  1 Reply Last reply Reply Quote 0
                  • RichardR Offline
                    Richard
                    last edited by

                    @pixero said:

                    @richard said:

                    Mate you can select the surface and make alternatives to fill the same space so that the components aren't all the same!

                    Thats not what I was after.

                    Sorry mate I understand now! Yes certainly an option to force specs easier than it certainly could be without work! Though that said this is the first we have seen of this plug so who knows, good idea though!!!! πŸ˜„

                    [BUILTBRAND.COM.AU](http://builtbrand.com.au/)

                    1 Reply Last reply Reply Quote 0
                    • T Offline
                      tak2hata
                      last edited by

                      Hi, All.
                      I updated make fur plugin version to 1.3a(test version).

                      Because I changed the format of the preset, it is not compatible with the one before.
                      Please warn you.

                      Thanks.


                      by TAK2HATA

                      1 Reply Last reply Reply Quote 0
                      • EscapeArtistE Offline
                        EscapeArtist
                        last edited by

                        Just keeps getting better!

                        1 Reply Last reply Reply Quote 0
                        • D Offline
                          Daniel S
                          last edited by

                          Thank you for the update tak2hata!

                          Perhaps in next versions you can put all the options in a submenu? Something like the attachment.

                          Daniel S


                          submenu.jpg

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

                            Why metric and imperial? Why not just deal with the units in the way that the model is?

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

                            1 Reply Last reply Reply Quote 0
                            • T Offline
                              tak2hata
                              last edited by

                              Hi,Daniel.
                              I Changed menu items into sub menu named "Fur_v1_3".

                              @thomthom said:

                              Why metric and imperial? Why not just deal with the units in the way that the model is?

                              Hi,Thomas.
                              Because I think it easy to test both imperial and metric.
                              I am not accustomed to the imperial.
                              I will corrects it in future version.
                              Thanks for your advice.


                              by TAK2HATA

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

                                The Numeric, Float and String class has some nice methods that let you deal with units in the user's locale and in the current model's units.

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

                                1 Reply Last reply Reply Quote 0
                                • T Offline
                                  tak2hata
                                  last edited by

                                  @thomthom said:

                                  The Numeric, Float and String class has some nice methods that let you deal with units in the user's locale and in the current model's units.

                                  Hi, Thomas.
                                  Thanks ! I'm searching for that method.


                                  by TAK2HATA

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

                                    Basically:

                                    Ensure the units you use are Length objects. Length.to_s will output a unit in the user's locale and model settings. This is useful when presenting units in the UI, like for inputboxes etc.

                                    Then you have String.to_l, which is useful to convert user input into Length. If a user types "100mm" it then .to_l will convert that into the appropriate Length. (Length is always in SU's internal units: inches)

                                    "100m".to_l
                                    becomes:
                                    3937.00787401575

                                    If the user has mm set as the model units, then "100" (without any unit indication) is assumed to be in mm and the result is:
                                    "100".to_l 3.93700787401575

                                    same thing as if the user had typed "100mm"
                                    "100mm".to_l 3.93700787401575

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

                                    1 Reply Last reply Reply Quote 0
                                    • P Offline
                                      portenart.emile
                                      last edited by

                                      Hello every body,

                                      I found this plugin today. It look amazing. Ihave made the grass but i don't know why it isn't render in Vray ? I'm sure it's a specific option i have to check but i don't found it.

                                      I use Skectchup pro 7.1.6, Vray for sketchup 01.05.30, and Fur Plugin 1.3.

                                      I can send you a screenshot or a file if you need.

                                      Thanks you for your help πŸ˜„
                                      Emile

                                      1 Reply Last reply Reply Quote 0
                                      • mariochaM Offline
                                        mariocha
                                        last edited by

                                        Hum .... Although the title says V1.3b
                                        the download still says v1.3a πŸ˜•

                                        %(#008000)[Mario C.
                                        Every rule has exceptions, but some.]

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

                                          @portenart.emile said:

                                          I found this plugin today. It look amazing. Ihave made the grass but i don't know why it isn't render in Vray ? I'm sure it's a specific option i have to check but i don't found it.

                                          I use Skectchup pro 7.1.6, Vray for sketchup 01.05.30, and Fur Plugin 1.3.

                                          This is due to a Sketchup bug and groups. The groups will render when you reopen the model.
                                          The latest VfSU does not suffer from this SU bug.

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

                                          1 Reply Last reply Reply Quote 0
                                          • J Offline
                                            jbrown
                                            last edited by

                                            Very handy.
                                            Am I missing something in the settings, though? It appears to be growing from the opposite side of the selected face and I can't figure out how to change that. Not too big a deal to select the opposite side from where it needs to go, but maybe there's an easier way?

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 6
                                            • 7
                                            • 8
                                            • 9
                                            • 10
                                            • 32
                                            • 33
                                            • 8 / 33
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement