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

    [Plugin] Sculpt Tools (help)

    Scheduled Pinned Locked Moved Plugins
    188 Posts 46 Posters 76.0k Views 46 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.
    • B Offline
      BTM
      last edited by

      @daniel s said:

      Thank you BTM!

      a few ideas/requests:

      • Is it possible to make a circle (or the shape of the brush) around the cursor? Something like the smoove tool or the circle tool? Something like this:

      http://forums.sketchucation.com/download/file.php?id=30091

      Will make it more "precise"

      • Be able to change the radius of the brush in the vcb or measurements toolbar (this is possible to make for example with the smoove or circle tool so you don´t have to open the dialog every time you want to change desired size of the radius of the brush):

      http://forums.sketchucation.com/download/file.php?id=30092

      It will be faster to sculpt

      Also I attach alternate icons. I take them from a mudbox tutorial... I only change the colors.

      http://forums.sketchucation.com/download/file.php?id=30093

      Daniel S

      First of all, I DO plan on adding visuals eventually, which include a soft radius circle, hard radius circle, and a direction line for the bulge tool. As for the radius in the VCB, I could do it, but I'd need to know who wants what setting to appear there (probably soft radius). For icons, those do give me some ideas.

      1 Reply Last reply Reply Quote 0
      • B Offline
        BTM
        last edited by

        @tig said:

        Can I suggest a new "[Plugin] Sculpt" thread that has the updated stuff as its first post - it's getting confusing...

        Not yet, I'm hoping to get the plugin past all the problems first; I couldn't test it on windows myself though, so I guess you guys are the testers. 😄

        1 Reply Last reply Reply Quote 0
        • CadFatherC Offline
          CadFather
          last edited by

          Hi BTM - just to say this ruby is a jewel!!! Thank You in advance for all those easy sculps i shall be drawing!

          1 Reply Last reply Reply Quote 0
          • B Offline
            BTM
            last edited by

            … I've been messing around with view.draw lately, and have to say that its confusing. View only updates when the view changes, and in order to get it to update on mouse move, requires a lot of confusing things that I don't understand yet. I'll figure it out sooner or later…

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

              calling view.invalidate forces a refresh. Hope that helps.

              Hi

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

                When you figure it out, let me know 😄

                I've also had difficulty with it. I eventually get it to work, but I never feel confident I've implemented how it is supposed to be implemented.

                Chris

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

                1 Reply Last reply Reply Quote 0
                • B Offline
                  BTM
                  last edited by

                  @jim said:

                  calling view.invalidate forces a refresh. Hope that helps.

                  That much I do know, but my problem is where to put it, and when to do it. 😕

                  1 Reply Last reply Reply Quote 0
                  • mitcorbM Offline
                    mitcorb
                    last edited by

                    Nice concatenation there, Majid.

                    I take the slow, deliberate approach in my aimless wandering.

                    1 Reply Last reply Reply Quote 0
                    • B Offline
                      BTM
                      last edited by

                      ( 03/07/09) Working icons on windows. easy install.

                      … These are the only files necessary, and where they should go:

                      btm_Sculpt_Tools_Loader.rb > plugins folder
                      btm_Sculpt_Tools folder > plugins folder

                      btm_sculpt1_dialog1.png > btm_Sculpt_Tools folder
                      btm_sculpt2_bulge1.png > btm_Sculpt_Tools folder
                      btm_sculpt3_push1.png > btm_Sculpt_Tools folder
                      btm_sculpt4_smooth1.png > btm_Sculpt_Tools folder
                      btm_Sculpt1_Dialog.rb > btm_Sculpt_Tools folder
                      btm_Sculpt2_Bulge.rb > btm_Sculpt_Tools folder
                      btm_Sculpt3_Push.rb > btm_Sculpt_Tools folder
                      btm_Sculpt4_smooth.rb > btm_Sculpt_Tools folder

                      … Post here if you are having problems.

                      NOTES: for Bulge and Push, Shift will reverse the tools, so Bulge will carve, and Push will Pull. Bulge bulges the mesh, push pushes things away from the cursor, and smooth smoothes out the mesh.

                      1 Reply Last reply Reply Quote 0
                      • N Offline
                        negativa
                        last edited by

                        Hello all! Here's another head 😄...
                        Great script
                        head

                        1 Reply Last reply Reply Quote 0
                        • B Offline
                          BTM
                          last edited by

                          @negativa said:

                          Hello all! Here's another head 😄...
                          Great script
                          [attachment=0:2reuq2g6]<!-- ia0 -->my_sculpthead.jpg<!-- ia0 -->[/attachment:2reuq2g6]

                          Nice! 😄

                          1 Reply Last reply Reply Quote 0
                          • C Offline
                            Click Draw
                            last edited by

                            Very cool!...thanks for your reply BTM. I've downloaded and am currently playin' around. Thank you for the script!
                            Jeff

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

                            1 Reply Last reply Reply Quote 0
                            • B Offline
                              BTM
                              last edited by

                              Okay, after looking through the utilitiestools script, and through the SU API for a while, I have found out how to add inferencing and view.draw objects you can see 😉 scripts will be updated eventually.

                              ` def activate
                              @ip1 = Sketchup::InputPoint.new
                              @ip2 = Sketchup::InputPoint.new
                              # new inputpoints.
                              end

                              def onMouseMove(flags,x,y,view)
                              @ip1.pick view, x, y
                              #gets 1.
                              if @ip1 != @ip2
                              # if 1 moved from the last position, where 2 is, do this.
                              view.invalidate if( @ip1.display? or @ip2.display? )
                              # invalidate the view if either point is shown. remove the if( @ip1.display? or @ip2.display? ) part when adding other visualizations.
                              @ip2.copy! @ip1
                              # set 2 to 1, so that when 1 moves again, it can tell.
                              end
                              end

                              def draw(view)
                              @ip1.draw view
                              # draw 1.
                              end`

                              1 Reply Last reply Reply Quote 0
                              • charly2008C Offline
                                charly2008
                                last edited by

                                Hi to All,

                                it is a very nice tool but where can i find the icons for the toolbar. The toolbar works but without icons.
                                The icons were not included at the download.

                                Karlheinz


                                Sculp Toolbar.jpg

                                He who makes no mistakes, makes nothing

                                1 Reply Last reply Reply Quote 0
                                • B Offline
                                  BTM
                                  last edited by

                                  @charly2008 said:

                                  Hi to All,

                                  it is a very nice tool but where can i find the icons for the toolbar. The toolbar works but without icons.
                                  The icons were not included at the download.

                                  They should have been, and are included in the latest version. Maybe try re-installing it 😕 ( go to page 4; the download there has been updated several times. )

                                  1 Reply Last reply Reply Quote 0
                                  • B Offline
                                    BTM
                                    last edited by

                                    … on a side note, does anyone know how to get view.draw to draw a 12 point circle, oriented in any direction with any given radius? 😳

                                    1 Reply Last reply Reply Quote 0
                                    • charly2008C Offline
                                      charly2008
                                      last edited by

                                      Thankyou BTM

                                      Karlheinz

                                      He who makes no mistakes, makes nothing

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

                                        Charly, you don't have duplicate icons and your on Windows. Are most people still getting double set of toolbar icons? I am running Vista 64bit and I still get ther double icons. Anyone else?

                                        Chris

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

                                        1 Reply Last reply Reply Quote 0
                                        • B Offline
                                          BTM
                                          last edited by

                                          @chris fullmer said:

                                          Charly, you don't have duplicate icons and your on Windows. Are most people still getting double set of toolbar icons? I am running Vista 64bit and I still get ther double icons. Anyone else?

                                          Chris

                                          … I don't think anybody else said they were getting duplicate icons but you. ( Though, in an older version of the script there were duplicates in the plugins menu; there shouldn't be anymore. )
                                          It's a bit weird. does anyone else with vista have the same problem as Chris? 😕

                                          1 Reply Last reply Reply Quote 0
                                          • majidM Offline
                                            majid
                                            last edited by

                                            this is not Sketchup...you are kidding me this is skerinobrush **U**P, .... thanx this is working fine....

                                            My inspiring A, B, Sketches book: https://sketchucation.com/shop/books/intermediate/2612-alphabet-inspired-sketches--inspiring-drills-for-architects--3d-artists-and-designers-

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

                                            Advertisement