• Login
sketchucation logo sketchucation
  • Login
πŸ€‘ 30% Off | Artisan 2 on sale until April 30th Buy Now

Parametric modeling, anyone?

Scheduled Pinned Locked Moved Corner Bar
45 Posts 14 Posters 3.7k Views
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.
  • J Offline
    jeff hammond
    last edited by 4 Jul 2014, 05:50

    @tkluysk said:

    MatterMachine - SketchUp: first contact!

    This is through a socket, straight from the Unity webplayer plugin in Chrome, to a SketchUp Ruby thread.

    The Ruby threads seem to refresh very erratically and somewhat infrequently. By far not fast enough to sustain, say, a 30fps link between MM and SU. It might very well be that that's as good as Ruby threads get. They are not much faster when run in a shell, outside of SU, so SU is not really to blame here we think.

    If we rule out error from us, we will work through a C++ socket instead.

    (disclaimer - i don't write code)

    are you trying to get all of the drawing to happen in sketchup itself? because i would imagine that being pretty slow for this type of plugin as it's going to be creating lots of geometry very quickly and i don't think sketchup can handle it except for the most basic of operations.

    what if it accepts geometry from sketchup (say, a line in a model) as input.. then does all the calculating/previewing/etc outside of the sketchup model space (or maybe in the space but using different type of preview drawing than normal sketchup?).. once a user is satisfied, the results are then drawn ('baked' in grasshopper terms) with real sketchup geometry.

    or is what i'm describing already what you and jolran's sneakpeeks showing?

    dotdotdot

    1 Reply Last reply Reply Quote 0
    • T Offline
      tt_su
      last edited by 4 Jul 2014, 11:29

      That's pretty much what they are doing. They calculate the parametric data and then translate that to the SketchUp native geometry.

      Doing that is best done in a compiled language instead of Ruby - as Ruby is slow for that kind of work. For that Ruby C Extensions allow you to bridge any language you want really.

      Creating bulk geometry via the Ruby API is another challenge - we're aware of that and we want to improve that. These kinds of extensions are good use cases to study in order to optimize the SketchUp platform.

      1 Reply Last reply Reply Quote 0
      • J Offline
        jeff hammond
        last edited by 4 Jul 2014, 14:26

        ^
        oh, ok.
        in that case, I'd only advise that you advise the compiled language is one that can be used cross platform πŸ˜„ (C++ maybe?)

        even if mac/win version isn't developed in parallel, a language that doesn't make it impossible to go to mac further down the line.

        dotdotdot

        1 Reply Last reply Reply Quote 0
        • J Offline
          juju
          last edited by 10 Jul 2014, 11:26

          @numerobis said:

          πŸ’š

          powerful stuff

          makes me happy in my pants

          such a pity I won't be able to make use of this

          Save the Earth, it's the only planet with chocolate.

          1 Reply Last reply Reply Quote 0
          • T Offline
            tkluysk
            last edited by 12 Jul 2014, 06:35

            @jeff We tried a non-blocking socket in the main Ruby thread for a bit (ie, not running in a slow second thread), and that actually worked fine. We're now using a C++ socket, which is still an order of magnitude faster. We are working on an efficient way to pass large amounts of geometry data from MatterMachine to SketchUp, at a respectable framerate (10+ fps). The socket seems fine with that.

            The bottleneck is rapidly shifting to the translation of that geometry data to SketchUp geometry using Ruby, like you guessed.

            On suggestion from Jolran and ThomThom, we are representing geo using fast(er) GL draw calls while the user is editing (using a slider or in-view gizmo). Ideally, we want to build proper SketchUp geo as soon as the user stops editing (mouseup). We'll see if that's realistic. We'd like to get a better user experience than the Grasshopper - Rhino interaction.

            At this time, it looks like we should be able to compile for both Mac & PC, and even older versions of SketchUp using Ruby 1.8.


            [MatterMachine(http://maattermachine.com)]

            1 Reply Last reply Reply Quote 0
            • N Offline
              numerobis
              last edited by 12 Jul 2014, 09:28

              πŸ’š

              1 Reply Last reply Reply Quote 0
              • J Offline
                jolran
                last edited by 12 Jul 2014, 19:13

                Hi Tom.

                Regarding getting a better user experience than the Grasshopper - Rhino interaction, it might be difficult 😒

                I'm working a bit with that right now, and it's quite disturbing how entities get's lost sporadically after edits. So referencing existing Sketchup Geometry is not a piece of cake.

                I'm guessing this is due to Sketchup being a "meshmodeler" and Sketchup has to create new faces all the time to fill in geometry. (Try creating a cylinder and rotate the top around center you will see faces triangulate. A reference to a face on that surface will get lost)

                Using object id's, caching the selection, or using attributes is all the same....

                1 Reply Last reply Reply Quote 0
                • T Offline
                  tt_su
                  last edited by 13 Jul 2014, 08:28

                  @jolran said:

                  (Try creating a cylinder and rotate the top around center you will see faces triangulate. A reference to a face on that surface will get lost)

                  You could generate the mesh triangulated while you do live deformation.
                  And you might have better luck with manipulating the vertices instead - using Entities.transform_by_vectors. (That's what I'm doing with SUbD: http://sketchucation.com/forums/viewtopic.php?f=323%26amp;t=57480)

                  1 Reply Last reply Reply Quote 0
                  • J Offline
                    jolran
                    last edited by 13 Jul 2014, 09:21

                    @unknownuser said:

                    You could generate the mesh triangulated while you do live deformation.

                    That would generate new faces, you mean. ? Getting a nice deformation result is not what I'm talking about.

                    We might be dependent on information gathered from a particular face further in the node-chain. Like planes and stuff..
                    This must go hand in hand with user doing standard modeling tools, which is out of reach of the plugin, normally.

                    I did noticed though, getting information from vertices is more predictable.
                    And edgeloops. All in all collecting data from containers is safer.

                    It might be a workaround using vertices to collect data for a face, but not as straightforward.
                    It involves doing more lookups than should be necissary.

                    Subd:

                    Ah, nice! So CEXT is doing stuff externaly then ? πŸ˜„

                    1 Reply Last reply Reply Quote 0
                    • T Offline
                      tt_su
                      last edited by 13 Jul 2014, 19:07

                      @jolran said:

                      We might be dependent on information gathered from a particular face further in the node-chain. Like planes and stuff..
                      This must go hand in hand with user doing standard modeling tools, which is out of reach of the plugin, normally.

                      Right. In SUbD I store all data in attributes in the definition. Currently, when the mesh is subdivided the control mesh is recreated entirely in attributes - even nested attributes. At the moment each limit-mesh entity has a unique ID that reference the ID of the control mesh so I can look up control mesh data. (I think that if a face is triangulated by autofold each new face will get a copy of the attributes.)

                      I do wish we could have a more generic way to create parametric tools in SketchUp though. A framework that could be used to kick start new creations easily without everyone reinventing the low level stuff all the time. But generic high performance frameworks are challenging to get right.

                      @jolran said:

                      Ah, nice! So CEXT is doing stuff externally then ? πŸ˜„

                      CEXT in that last screenshot just reference the Ruby C++ Extension that does the calculations. I'm not sure if you refer to that as "external"..?

                      1 Reply Last reply Reply Quote 0
                      • J Offline
                        jolran
                        last edited by 13 Jul 2014, 22:20

                        @unknownuser said:

                        Right. In SUbD I store all data in attributes in the definition. Currently, when the mesh is subdivided the control mesh is recreated entirely in attributes - even nested attributes. At the moment each limit-mesh entity has a unique ID that reference the ID of the control mesh so I can look up control mesh data. (I think that if a face is triangulated by autofold each new face will get a copy of the attributes.)

                        Sounds sofisticated. This gives me some ideas, thanks.

                        @unknownuser said:

                        I do wish we could have a more generic way to create parametric tools in SketchUp though. A framework that could be used to kick start new creations easily without everyone reinventing the low level stuff all the time. But generic high performance frameworks are challenging to get right.

                        Yeah, that would be ultimate. Have you started yet ? πŸ˜„

                        @unknownuser said:

                        CEXT in that last screenshot just reference the Ruby C++ Extension that does the calculations.

                        Yes I was refering to a C-extension.

                        1 Reply Last reply Reply Quote 0
                        • T Offline
                          tt_su
                          last edited by 14 Jul 2014, 09:13

                          @jolran said:

                          Yeah, that would be ultimate. Have you started yet ? πŸ˜„

                          haha!
                          Well, one first need to understand the problem. Working on SUbD gives me some insight to that. Keeping an eye on this thread is also a good source of information.

                          These types of extensions haven't been so in a great extent for SketchUp. So finding a good design pattern isn't easy. Will need some experimentation and trials and errors.

                          @jolran said:

                          Yes I was refering to a C-extension.

                          I first started using C extensions for Vertex Tools - in order to implement the soft selection feature with any reasonable performance. Scripted languages are usually slow for calculations - Ruby especially so.

                          1 Reply Last reply Reply Quote 0
                          • J Offline
                            jolran
                            last edited by 14 Jul 2014, 22:37

                            @unknownuser said:

                            I first started using C extensions for Vertex Tools - in order to implement the soft selection feature with any reasonable performance. Scripted languages are usually slow for calculations - Ruby especially so.

                            Yeah I have the impression Ruby works fine for a while, but when you hit a wall it slows down exponentionally..

                            I'm looking into the C-stuff. Got some help now..

                            1 Reply Last reply Reply Quote 0
                            • I Offline
                              ivreich
                              last edited by 23 Jul 2014, 02:39

                              Have to say, this would be a dream come true for me. I've also been asking for something like this for quite a while, particularly for doing complex panelisation operations.

                              @jolran - I remember you telling me once that you were working on something off the back of hatchfaces; is that the propject that you are referring to in this topic? I can't seem to find any link to it though...Care to share?? πŸ˜‰

                              Best of luck to you all!!

                              Joel

                              1 Reply Last reply Reply Quote 0
                              • J Offline
                                jolran
                                last edited by 23 Jul 2014, 06:30

                                Hi Joel.

                                No, this is a different thing than the one I was working on back then.
                                There are no release yet, and no date set.

                                You can PM me for specific questions/suggestions, should you wish to πŸ˜„

                                1 Reply Last reply Reply Quote 0
                                • 1
                                • 2
                                • 3
                                • 2 / 3
                                • First post
                                  Last post
                                Buy SketchPlus
                                Buy SUbD
                                Buy WrapR
                                Buy eBook
                                Buy Modelur
                                Buy Vertex Tools
                                Buy SketchCuisine
                                Buy FormFonts

                                Advertisement