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

    [Plugin] Honeycomber

    Scheduled Pinned Locked Moved Plugins
    91 Posts 21 Posters 51.7k Views 21 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.
    • TIGT Offline
      TIG Moderator
      last edited by

      Oxer

      The def raytest**2** is excluded as we are interested in just ' raytest'.
      The listed scripts USE ' raytest', but do not re-define it...

      Did the search include subfolders ?
      My suggested method in the last post will confirm if subfolders are getting searched, if it finds the tool's .rb in its subfolder.

      Once we have exhausted these possibilities we can consider the 'disabling' options.

      TIG

      1 Reply Last reply Reply Quote 0
      • OxerO Offline
        Oxer
        last edited by

        Yes, i confirm you that the search includes subfolders.
        I have found other plugin with "def raytest" it's manifold.rb but i have uninstalled it and Honeycombre continues off.
        I don't undestand the code ruby but i think the problem isn't in the conflict with others plugins.
        Sorry TIG, i can't help you of the other form.

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

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

          @tig said:

          Oxer

          The def raytest**2** is excluded as we are interested in just ' raytest'.
          The listed scripts USE ' raytest', but do not re-define it...

          Did the search include subfolders ?
          My suggested method in the last post will confirm if subfolders are getting searched, if it finds the tool's .rb in its subfolder.

          Once we have exhausted these possibilities we can consider the 'disabling' options.

          The only plugin/script file (including searching within folders) that contains 'raytest' (or 'def raytest') in its contents that I can find ... is your script 'TIG-Honeycomber.rb'.

          Same to be said for 'module TIG' .... only in your script 'TIG-Honeycomber.rb'.

          1 Reply Last reply Reply Quote 0
          • TIGT Offline
            TIG Moderator
            last edited by

            It's not a 'conflict'.
            Some 'rogue' scripts rewrite native built-in class/methods rather than making a separate process.
            Model.raytest takes an argument consisting of an array of a point and a vector
            [point,vector], this determines where the 'ray' starts and the direction it is cast.
            There is a second optional argument telling it to ignore/include 'hidden' objects in the testing...
            So my code's
            rayt=model.raytest([point,vector],true)
            should work.

            The error says it's expecting a 'Float' [number] NOT a 'Point3d' occurs irrespective of how the raytest is run. The Ruby Console method shows this.
            If you removed my TIG-Honeycomber_loader.rb its other file won't load and when you restart Sketchup I prepared to bet cash that you'll get the same Ruby Console error when doing a raytest.
            So it's NOT my code.
            Something else is messing with the correct operation of model.raytest() πŸ˜’

            Here's how to track it down to a specific file.
            Make a temporary folder called 'Disabled'.
            Sort the files in the Plugins folder by type [i.e. extension name].
            Disable around half of those files that end in .rb/.rbs [i.e. move them into 'Disabled' folder] - note how we include the .rb files, because a .rb might be loading a .rbs from a subfolder, although we have eliminated them as the direct culprits.
            Restart Sketchup and test for the 'raytest' error again [the SKP with the circle and the one liner in the Console is probably the easiest, and you get the result instantly too].
            You'll have one of two results.

            1. There is no error.
            2. The error recurs.
              Let's assume 1. you now know the problem file is in the set left in the 'Disabled' folder.
              Move around half of the files from Disabled in to Plugins.
              Repeat the 'raytest' testing again.
              Once again you have one of the two results - if 1. repeat until you have one file left in 'Disabled'.
              That should be the culprit, double check by returning it and seeing if the 'raytest' error recurs. If it's 2. following the reverse procedure outlined below.***
              Move it out again if/when it does.
              If it's a .rb file it will [probably] be loading a .rbs from a subfolder.
              Let me know what it the tool is.
              Alternatively let's assume it's initial 2. [error recurs]*** - this time move files in the opposite direction.
              Take about half of the .rb/.rbs from Plugins and put them back in Disabled.
              When re-tested if the error recurs the problem file is still in Plugins, move half out again until you get the culprit.
              If the retest succeeds then the problem file is amongst those have you just moved into Disabled; move half back etc until you zoom-in on the culprit.

            The alternative method is this [note that it will on average take the same amount of time, BUT it could give a much faster OR much slower result].
            This method is that you move the files one by one from Disabled into Plugins and retest each time.
            When it fails the file you just moved in is the culprit.

            IF we find no culprit inside Plugins or its subfolder, then we could look at files inside Tools BUT it's unlikely.

            If the error recurs will ALL plugins disabled then the fault is in Sketchup itself...
            A reinstall or repair might fix it, but I really suspect a 'rogue' script is the culprit.
            😲

            TIG

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

              @tig said:

              It's not a 'conflict'.
              Some 'rogue' scripts rewrite native built-in class/methods rather than making a separate process.
              Model.raytest takes an argument consisting of an array of a point and a vector
              [point,vector], this determines where the 'ray' starts and the direction it is cast.
              There is a second optional argument telling it to ignore/include 'hidden' objects in the testing...
              So my code's
              rayt=model.raytest([point,vector],true)
              should work.

              The error says it's expecting a 'Float' [number] NOT a 'Point3d' occurs irrespective of how the raytest is run. The Ruby Console method shows this.
              If you removed my TIG-Honeycomber_loader.rb its other file won't load and when you restart Sketchup I prepared to bet cash that you'll get the same Ruby Console error when doing a raytest.
              So it's NOT my code.
              Something else is messing with the correct operation of model.raytest() πŸ˜’

              Here's how to track it down to a specific file.
              Make a temporary folder called 'Disabled'.
              Sort the files in the Plugins folder by type [i.e. extension name].
              Disable around half of those files that end in .rb/.rbs [i.e. move them into 'Disabled' folder] - note how we include the .rb files, because a .rb might be loading a .rbs from a subfolder, although we have eliminated them as the direct culprits.
              Restart Sketchup and test for the 'raytest' error again [the SKP with the circle and the one liner in the Console is probably the easiest, and you get the result instantly too].
              You'll have one of two results.

              1. There is no error.
              2. The error recurs.
                Let's assume 1. you now know the problem file is in the set left in the 'Disabled' folder.
                Move around half of the files from Disabled in to Plugins.
                Repeat the 'raytest' testing again.
                Once again you have one of the two results - if 1. repeat until you have one file left in 'Disabled'.
                That should be the culprit, double check by returning it and seeing if the 'raytest' error recurs. If it's 2. following the reverse procedure outlined below.***
                Move it out again if/when it does.
                If it's a .rb file it will [probably] be loading a .rbs from a subfolder.
                Let me know what it the tool is.
                Alternatively let's assume it's initial 2. [error recurs]*** - this time move files in the opposite direction.
                Take about half of the .rb/.rbs from Plugins and put them back in Disabled.
                When re-tested if the error recurs the problem file is still in Plugins, move half out again until you get the culprit.
                If the retest succeeds then the problem file is amongst those have you just moved into Disabled; move half back etc until you zoom-in on the culprit.

              The alternative method is this [note that it will on average take the same amount of time, BUT it could give a much faster OR much slower result].
              This method is that you move the files one by one from Disabled into Plugins and retest each time.
              When it fails the file you just moved in is the culprit.

              IF we find no culprit inside Plugins or its subfolder, then we could look at files inside Tools BUT it's unlikely.

              If the error recurs will ALL plugins disabled then the fault is in Sketchup itself...
              A reinstall or repair might fix it, but I really suspect a 'rogue' script is the culprit.
              😲

              I've removed all plugin scripts to a separate folder (outside of plugins) ... a few at a time ... to leave only the Honeycomber script. Same issues. 😞

              1 Reply Last reply Reply Quote 0
              • OxerO Offline
                Oxer
                last edited by

                I have moved all plugins and all tools (except sketchup.rb, extensions.rb & langhandler.rb) to "DISABLED FOLDERS" and i have tested SKP with the circle and the line in the Console, this is the result:
                1.jpg

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

                1 Reply Last reply Reply Quote 0
                • TIGT Offline
                  TIG Moderator
                  last edited by

                  OK.
                  Stop the testing!
                  😲

                  Can I have exact details of your Sketchup version and your OS.
                  [both Oxer AND SUFractal].

                  Something is seriously adrift !!!

                  I need to speak with the powers-that-be at Google to resolve this - it appears to be a basic error in that specific Sketchup installation...

                  The model.raytest() is not working as specified...

                  TIG

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

                    @tig said:

                    OK.
                    Stop the testing!
                    😲

                    Can I have exact details of your Sketchup version and your OS.
                    [both Oxer AND SUFractal].

                    Something is seriously adrift !!!

                    I need to speak with the powers-that-be at Google to resolve this - it appears to be a basic error in that specific Sketchup installation...

                    The model.raytest() is not working as specified...

                    SUFractal is using Mac OSX 10.6.8 with SUPro version 8. Anything else?

                    1 Reply Last reply Reply Quote 0
                    • TIGT Offline
                      TIG Moderator
                      last edited by

                      Can you please supply the exact version of Sketchup [found via Help > About...]
                      I have already logged something with Google and need the exact details... πŸ˜•

                      TIG

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

                        @tig said:

                        Can you please supply the exact version of Sketchup [found via Help > About...]
                        I have already logged something with Google and need the exact details... πŸ˜•

                        Version 8.0.3161

                        1 Reply Last reply Reply Quote 0
                        • TIGT Offline
                          TIG Moderator
                          last edited by

                          Thanks - this issue will affect many tools, so it needs resolving...

                          TIG

                          1 Reply Last reply Reply Quote 0
                          • TIGT Offline
                            TIG Moderator
                            last edited by

                            The best brains are now on to it...

                            Oxer/SUFractal... if you lift up the circle in the Z/blue axis [just a little] and retest with the Console raytest code do you still get the same error ?

                            If you use this alternative too ?
                            Sketchup.active_model.raytest([Geom::Point3d.new(0,0,111),Z_AXIS.reverse])

                            This really is weird ??

                            Another, perhaps more remote, possibility is that you still have some rogue script loading from elsewhere that is redefining raytest and we have not found it [yet].
                            Can you type this in the Console $LOAD_PATH and report the list.
                            If there are folder-paths other than root's Plugins and Tools, then check those for scripts containing 'def raytest' too πŸ˜•

                            TIG

                            1 Reply Last reply Reply Quote 0
                            • OxerO Offline
                              Oxer
                              last edited by

                              With $LOAD_PATH appears the default paths to the plugins & tools folders but it appears the main path to my user count "/Users/Oxer" i don't know why. I have deleted the rest of the plugins in this path, for example in my downloads folder, etc.
                              TIG this is the result with the two codes, circle in Z/ blue axis.
                              Captura de pantalla 2012-04-05 a las 14.05.40.png

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

                              1 Reply Last reply Reply Quote 0
                              • TIGT Offline
                                TIG Moderator
                                last edited by

                                Sorry Oxer, to try and get this more logical, here's a set of steps.
                                Make a ~1m circle flat on the ground, centered on the ORIGIN.
                                Move it up 11".

                                Open the Ruby Console and run two raytests.
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,-111), Z_AXIS])
                                then
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,-111), Z_AXIS], true)
                                Next do two more raytests.
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,111), Z_AXIS.reverse])
                                then
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,111), Z_AXIS,reverse], true)

                                Now move the circle downwards by 22" so it's below the ORIGIN.

                                Repeat the 4 tests...
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,-111), Z_AXIS])
                                then
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,-111), Z_AXIS], true)
                                then
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,111), Z_AXIS.reverse])
                                then
                                Sketchup.active_model.raytest([Geom::Point3d.new(0,0,111), Z_AXIS,reverse], true)

                                Move the circle exactly onto the ORIGIN and repeat the 4 step test...

                                Post the text results from the Ruby Console...
                                I suspect that your MAC can't cope with certain permutations of axes and z values, or perhaps the optional wysiwyg flag ???

                                TIG

                                1 Reply Last reply Reply Quote 0
                                • OxerO Offline
                                  Oxer
                                  last edited by

                                  Sorry TIG, in Spain we are in holidays (Saint Week) i'm going to travel when i back i'll continue with the testing.
                                  Bye, best wishes.

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

                                  1 Reply Last reply Reply Quote 0
                                  • TIGT Offline
                                    TIG Moderator
                                    last edited by

                                    No problems, I am on hols from tonight anyway... πŸ˜„

                                    TIG

                                    1 Reply Last reply Reply Quote 0
                                    • O Offline
                                      oisin.higgins
                                      last edited by

                                      Hi TIG,
                                      Is it possible to use this script to create space frames with regular geometry that can be tessellated e.g. a tetrhedron, octahedron, or dodecahedron?

                                      1 Reply Last reply Reply Quote 0
                                      • TIGT Offline
                                        TIG Moderator
                                        last edited by

                                        @oisin.higgins said:

                                        Hi TIG,
                                        Is it possible to use this script to create space frames with regular geometry that can be tessellated e.g. a tetrahedron, octahedron, or dodecahedron?
                                        Yes, theoretically... πŸ˜•
                                        This is v1.0 πŸ˜‰
                                        The math would just get extra extra complicated...
                                        I do have '3 sided' [equilateral triangles] on the to-do-list already - which would give 'reinforced hexagonal honeycombs...

                                        TIG

                                        1 Reply Last reply Reply Quote 0
                                        • TIGT Offline
                                          TIG Moderator
                                          last edited by

                                          Oxer/SUFractal

                                          Thomthom has just pointed out that your versions of v8 are out of date and were replaced by updated that fixed certain issues - including some with model.raytest...

                                          Please download the latest v8pro version for your OS, install then then retest...
                                          Report back - it would be nice to know that the fix was as simple as you getting the latest version of the software... before you report an issue 😞

                                          TIG

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

                                            @tig said:

                                            Oxer/SUFractal

                                            Thomthom has just pointed out that your versions of v8 are out of date and were replaced by updated that fixed certain issues - including some with model.raytest...

                                            Please download the latest v8pro version for your OS, install then then retest...
                                            Report back - it would be nice to know that the fix was as simple as you getting the latest version of the software... before you report an issue 😞

                                            TIG/TT:

                                            I've updated SU (Version 8.0.11751) as you suggested.

                                            Honeycomber, Instant Roof, SectionCutFace, and SketchUpBIM all seem to be getting along nicely so far.

                                            (Why didn't I think of something so simple as that? 😳 )

                                            Thanks for all your help ... I'll post in the SketchUpBIM thread/post.

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

                                            Advertisement