• Login
sketchucation logo sketchucation
  • Login
πŸ”Œ Quick Selection | Try Didier Bur's reworked classic extension that supercharges selections in SketchUp Download

Cricket for SketchUp; could this be true?

Scheduled Pinned Locked Moved Plugins
49 Posts 13 Posters 5.2k Views 13 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.
  • D Offline
    DavidBoulder
    last edited by 2 Apr 2013, 17:24

    Just posted this morning
    http://sketchucation.com/forums/viewtopic.php?f=323&t=51586

    This is not what typical SketchUp user wants unless they are doing energy modeling but thought I would share. We are doing our parametric analysis outside of SketchUp using an OSM file (OpenStudio Model) as a baseline, and then the OSM can be loaded into the OpenStudio SketchUp Plugin. The ruby based measures that form the basis for design alternatives in PAT (Parametric Analysis Tool) can also be loaded into the OpenStudio SketchUp plugin and used to manipulate the currently loaded OpenStudio model. These can be geometric manipulations or can relate to less visible changes such as the type of activity or equipment in specific spaces.

    Measure Library

    Measure Arguments

    Design Alternatives

    --

    David Goldwasser
    OpenStudio Developer
    National Renewable Energy Laboratory

    1 Reply Last reply Reply Quote 0
    • T Offline
      thomthom
      last edited by 2 Apr 2013, 19:36

      @jolran said:

      I'm still testing out stuff. Solving each problem and decide if it's worth to continue.
      The hard part will be solving communication between the nodes and what/how/when to send to SU. Cause it has to happend quickly.

      One idea is to have visual feedback all the time. Sort of design friendly. I don't think it is any point in letting the user connect X numbers of nodes and then hit a submitbutton.
      Don't need a node interface for that.

      Looking mighty interesting and promising!

      One option for fast visual feedback is to draw the geometry to the viewport using the view.draw method - and then generate the actual geometry as the user exits the tool.
      I do that in my Catmull-clark subdivision experiment:

      The generation of geometry is so much slower than the calculation of the subdivision that it was a good compromise - despite that the polygons got no soft shading or textures.

      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
        jolran
        last edited by 3 Apr 2013, 07:27

        Spot on Thomthom! Thats the way to go.

        Have made some experimenting outside this project with the viewclass. Very cool feature of the API I havent dug to deep into yet. Was thinking wireframe, but when I saw your flat shading gave me new hope. Very COOL!
        Adding it to the A1 page TODO list.

        BTW. Why do hardcore-programmers slam the keyboard so hard ? πŸ˜„

        1 Reply Last reply Reply Quote 0
        • T Offline
          thomthom
          last edited by 3 Apr 2013, 08:01

          It's my cursed web-cam microphone. Picks up every ambient sound. 😞
          I need to use my headset with microphone - but I always forget to bring it home from the office.

          Honesty, I'm very gentle!

          Aaaanyway! Really looking forward to seeing how your project progresses. πŸ˜„

          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
            thomthom
            last edited by 3 Apr 2013, 08:11

            Btw, to further improve viewport drawing performance: cache! cache! cache!

            Don't compute for every draw event, build a cache of instructions when the mesh changes instead.

            I got a DrawCache class which has worked very well for me, it can be easily dropped into a project with little modifications because it accepts the same draw methods as the View class.

            I wrote it for BezierSurface - but I'll untangle it and push it to TT_Lib so it's publicly accessible.
            In my test model the draw event spent 0.100s because it was doing calculations each time. When I hooked up the DrawCache it spent only 0.005s. πŸ˜„

            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
              thomthom
              last edited by 3 Apr 2013, 08:59

              Here we go:
              https://bitbucket.org/thomthom/tt-library-2/src/tip/TT_Lib2/draw_cache.rb?at=Version%202.8

              Class: TT::DrawCache β€” Documentation by YARD 0.9.9

              favicon

              (www.thomthom.net)

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

              1 Reply Last reply Reply Quote 0
              • K Offline
                Krisidious
                last edited by 3 Apr 2013, 09:26

                Thomthom has a youtube channel? must subscribe...

                By: Kristoff Rand
                Home DesignerUnique House Plans

                1 Reply Last reply Reply Quote 0
                • J Offline
                  jolran
                  last edited by 3 Apr 2013, 09:33

                  Thanks! Very generous and useful πŸ‘

                  I'm deep into JS and webdialog stuff right now so I have to deal with that Ruby part later.
                  But again VERY useful.

                  This Node-based UI needs heavy planning. Compared to a normal UI wich more or less has determined number of options, here the user adds new options dynamically.
                  Obviously one has to consider that when working on communication between nodes..
                  It's functional programing I suppose..

                  My brother bought a Mac, so I will be able to test for that as well. So thats good.
                  Funny little thing, looked like a Playstation.

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    thomthom
                    last edited by 3 Apr 2013, 09:58

                    I recommend using a framework such as jQuery - takes a lot of the pain away.

                    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
                      jolran
                      last edited by 3 Apr 2013, 10:33

                      @unknownuser said:

                      I recommend using a framework such as jQuery - takes a lot of the pain away.

                      I am. It would be very difficult for me without Jquery. It's difficult as it is.
                      When things get going I guess one can refactor to plain js as much as possible, should one feel improved performance is necessary?

                      1 Reply Last reply Reply Quote 0
                      • T Offline
                        thomthom
                        last edited by 3 Apr 2013, 10:45

                        @jolran said:

                        When things get going I guess one can refactor to plain js as much as possible, should one feel improved performance is necessary?

                        I wouldn't even consider it. Not unless you can prove by measurements that jQuery produces a bottleneck.

                        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
                          jolran
                          last edited by 3 Apr 2013, 14:31

                          @unknownuser said:

                          I wouldn't even consider it. Not unless you can prove by measurements that jQuery produces a bottleneck.

                          Thanks that's sounds reassuring. I'd rather not change..

                          Spent a whole day trying to get the nodes communicating.
                          Finally made some progress. When dropping a nodecurve on an endpoint, and a event trigger and grab the value from the sourcenode, yesy! That's a very important aspect of the plugin.

                          It turned out that the connectionplugin do not create DOM elements or rather JQuery objects 😲 . So had to find some fancy Jquery selectors to convert the elements for "parler".

                          I notice I'm raping this topic quite a bit. Might create a new topic later on IF I get some good news or a testversion(that might delay) to play with. Sort of WIP maybe?

                          1 Reply Last reply Reply Quote 0
                          • P Offline
                            pilou
                            last edited by 3 Apr 2013, 15:14

                            @unknownuser said:

                            Might create a new topic later on IF I get some good news or a testversion(that might delay) to play with. Sort of WIP maybe?

                            Sure! β˜€
                            Bon courage! 😎

                            Frenchy Pilou
                            Is beautiful that please without concept!
                            My Little site :)

                            1 Reply Last reply Reply Quote 0
                            • T Offline
                              thomthom
                              last edited by 3 Apr 2013, 15:43

                              @jolran said:

                              It turned out that the connectionplugin do not create DOM elements or rather JQuery objects 😲 . So had to find some fancy Jquery selectors to convert the elements for "parler".

                              What fancy selectors? Swapping between jQuery and DOM objects is trivial. Are you doing too much work?

                              @jolran said:

                              I notice I'm raping this topic quite a bit. Might create a new topic later on IF I get some good news or a testversion(that might delay) to play with. Sort of WIP maybe?

                              This topic was based on an April Fool's prank. It'd served its purpose. But if you want to keep the discussion grouped in a separate thread then let me know if you want me to move some of the comments from this thread to another.

                              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
                                jolran
                                last edited by 3 Apr 2013, 17:29

                                Thanks Pilou β˜€

                                @unknownuser said:

                                What fancy selectors? Swapping between jQuery and DOM objects is trivial. Are you doing too much work?

                                Don't know, it wasent obvious how to go about.
                                The connector JS-plugin has it's own namespace.
                                So I could not slam id or class selectors on the connector. The connector had it's own special object Id where I could extract "source" as the DOM object connected to this connector πŸ˜„ And from there use whatever Jquery selector needed.

                                Just took a while to figure out..

                                @unknownuser said:

                                This topic was based on an April Fool's prank. It'd served its purpose. But if you want to keep the discussion grouped in a separate thread then let me know if you want me to move some of the comments from this thread to another.

                                I will do that. But I think it will be ok to start an empty topic.
                                First I got to see where this can lead to. Then gotta figure out a name.
                                Cockroach ? πŸ˜„ Just kidding. I don't think it's a good idea to have a name that has a bug in it.

                                1 Reply Last reply Reply Quote 0
                                • D Offline
                                  dmatho
                                  last edited by 3 Apr 2013, 17:49

                                  @unknownuser said:

                                  ... But I think it will be ok to start an empty topic... Then gotta figure out a name. Cock-roach ?

                                  David Rutten, who initially developed what's now known as Grasshopper, called it "Explicit History Editor", the reasoning being it was that the UI allows graphically remapping processes and workflows ("the History"), irrespective and beyond actually creating and editing 3D geometry.

                                  The actual product name may come later (!?), I'm just providing, of you will, the background principle or spirit that's driving this brand-new usability for SketchUp, behind the scene.

                                  Cheers,

                                  . Diego .

                                  1 Reply Last reply Reply Quote 0
                                  • J Offline
                                    jolran
                                    last edited by 3 Apr 2013, 19:27

                                    "Explicit History Editor". Aha there you go.

                                    That name doesent really sell any numbers πŸ˜„

                                    Thanks for the info.

                                    1 Reply Last reply Reply Quote 0
                                    • D Offline
                                      DOD3R
                                      last edited by 5 Apr 2013, 11:26

                                      Hi Jorlan,
                                      This will be a gamechanger !!! and much better than Christmas. πŸ˜„

                                      PS: I volunteered for beta testing your hatchface/paneling plugin, but I discovered that I am not able to provide you with constructive feedback due to lack of experience with plugin development. I am just sketch up enthusiast with architectural education. So I am not very useful betatester at this stage, but I hope I can help later. May by I can do some UI design stuff or You name it I would be more than happy to help make parametric modeling available in SU.

                                      1 Reply Last reply Reply Quote 0
                                      • J Offline
                                        jolran
                                        last edited by 5 Apr 2013, 11:38

                                        Thank you, but I can't make any promises this will become a useful working plugin.

                                        But, I'm sure you can provide constructive feedback. I don't have much experience in plugin development either, really. Just hacking away, solving problems when they come...

                                        Just a simple matter to test if the plugin works on your system could be of big help.
                                        I'll let you know when there's something to test.

                                        All the best.

                                        1 Reply Last reply Reply Quote 0
                                        • plot-parisP Offline
                                          plot-paris
                                          last edited by 7 Apr 2013, 18:32

                                          Hi jolran,

                                          sounds really exciting. I am looking forward to a bit of alpha-testing πŸ˜‰
                                          such a plugin would be awesome indeed!

                                          PS: the "Cricket"-name of the april fools prank isnt too bad, actually...

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

                                          Advertisement