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

    [Plugin] 2D Tools

    Scheduled Pinned Locked Moved Plugins
    785 Posts 178 Posters 462.6k Views 177 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

      If you click on thisCapture.PNG and then this1.PNG you should get a new blank post, fill it in with title, text.attachments and recipients...
      If you click on the PM icon below a post's author's details/avatar2.PNG, it will open a new post, with the same title and the recipient filled in3.PNG
      What is your difficulty precisely ?

      TIG

      1 Reply Last reply Reply Quote 0
      • micioneM Offline
        micione
        last edited by

        TIG,
        I found the problem.
        This is Google Chrome / instant translator of the page.
        By disabling this feature, it seems all right.
        Thank you.
        Roberto

        1 Reply Last reply Reply Quote 0
        • micioneM Offline
          micione
          last edited by

          TIG,
          I talked to "LEDAS" the problem of "driving dimension" that creates conflicts
          with other plugins (specifically with 2D Tools).
          I responded thus:

          Ilya Tatarnikov 2012-05-11 05:58 UTC
          Hello Roberto,

          We confirm the problem and trying to investigate reasons and find solution.
          For more efficient work I'm recommending you to contact also to 2Dtools development team.
          They maybe got such request earlier and find some solution.

          --
          best regards,
          Ilya Tatarnikov

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

            It is not just my tools... but several tools made by others, that use legitimate Sketchup API class/methods [usually about 'groups'] that ought to 'return' certain values, but which LEDAS's tool overwrite ill-advisedly, thereby breaking several legit tools to enable his own !
            I have tried to circumvent several standard 'group' methods to avoid clashes like this [SketchyPhysics and others also do similar screw ups!], but there is a limit to what I can do. If LEDAS's code was not compiled it would be easy to find the issues, I have PM'd him about this ages ago, but I think he is just being obdurate, because his code works, 'so screw everyone else...'
            😒

            TIG

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

              @micione said:

              For more efficient work I'm recommending you to contact also to 2Dtools development team.
              They maybe got such request earlier and find some solution.

              Bah! Humbug!
              Overriding the base classes in SketchUp is a big no-no. Leaving it to others is just extra bad manners!

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

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

                Registrationware as well - don't like it when I have to give out my full details just to try a software...

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

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

                  This subject of the problems Sketchy Physics, Driving Dimensions and others cause comes up frequently. The authors have been approached more than once with requests to fix them but have never done so. It would appear to me that they have no interest in doing so. Perhaps there should be a sticky listing these plugins that are written so they cause plugins that are properly written to fail. A comment could be included to the effect of, "Understand that if you choose to use these plugins, they may cause other plugins to fail. Use these plugins at your own risk."

                  Etaoin Shrdlu

                  %

                  (THERE'S NO PLACE LIKE)

                  G28 X0.0 Y0.0 Z0.0

                  M30

                  %

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

                    I've been looking into LDD - When it's installed pretty much all the base classes is flooded with LDD methods. Even the root Object!!

                    Object.ancestors [Object, LDD, Kernel]

                    An LDD module is added to the Object class.

                    And just the constants that LDD adds:
                    LDD.constants ["SKETCH_TOOL", "PI", "GENERAL_CASE_LINES", "LDDEntitiesObserver", "EQUAL_LINES", "PUTS_IN_RUBY_CONSOLE", "CONSTRAINTS_LIMIT", "ENTITY_OBSERVERS", "LDDFaceFaceAngleConstraint", "LDDOptions", "LDD_return_values", "SKETCHUP_VERSION", "LDDVertexVertexDistanceConstraint", "ROTATE_TOOL", "Driving_Dimension", "LDD_constraints_types", "LDDVertexFaceDistanceConstraint", "CAMERA_ZOOM_TOOL", "ARC_TOOL", "LDDModelConstraints", "LDD_constraints_typesVersion_0_2", "Driving_Dimensions_Tool", "LDDFaceInformationForInferredConstraints", "LDDAppObserver", "LDDEdgeEdgeDistanceConstraint", "LDDLabelsObserverForVertex", "LEDAS_DRIVING_DIMENSIONS_BUILD", "INTERSECTING_LINES", "LDDFixationConstraint", "LDDEdgeFaceAngleConstraint", "CAMERA_ORBIT_TOOL", "DRIVING_DIMENSIONS_FIXATION_TOOL_CURSOR", "VERTEX_OBSERVERS", "LDDEdgeLengthConstraint", "LDDModelObserver", "RECTANGLE_TOOL", "LDDPreConstraint", "FULL_LOG", "LDDDrDiTextObserver", "LDDSet", "LDDEmptyConstraint", "DRIVING_DIMENSIONS_CALCULATING_CURSOR", "LDDEdgeEdgePlanarAngleConstraint", "PUSH_PULL_TOOL", "PARALLEL_LINES", "LDDDrDiEntityObserver", "LDDFaceFaceDistanceConstraint", "LDDToolsObserver", "LDD_PRO", "LDDVertexEdgeDistanceConstraint", "MOVE_TOOL", "LEDAS_DRIVING_DIMENSIONS_VERSION", "LDD_DIR", "LDDDataForSketchupModel", "LDDSelectionObserver", "DEG_SIGN", "LDDConstraint", "LDDEdgeFaceDistanceConstraint", "CAMERA_DOLLY_TOOL", "DRIVING_DIMENSIONS_TOOL_CURSOR", "LDDArcCurveRadiusConstraint", "CIRCLE_TOOL", "INTERSECTING_LINES_WITH_COMMON_FACE", "LDDDrDiGroupObserver", "LDDEdgeEdgeAngleConstraint", "LDDObserversHash", "LDDKEY", "OFFSET_TOOL", "Driving_Dimensions_Fixation_Tool"]

                    Notice that even a PI constant is added - so now it's available to all classes instead of Math::PI. What a mess...

                    LDD really do not play nicely with the shared SketchUp plugin environment at all! 😡 😡

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

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

                      TIG - how does one go about acquiring a copy of your 2D tools? Looks like just the fix I need. Assuming it works with the free version... http://forums.sketchucation.com/posting.php?mode=reply&f=323&t=22091#

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

                        Look at the bottom of the first page of 2D tools thread. At the bottom, see the Attachments box. The plugin is in a zip folder. Right click, save file as.. and place it in your favorite destination folder on your computer. Then unzip it to your Sketchup Plugins Folder.

                        I don't know why you inserted that link to a Reply panel. At the bottom left of the Reading Window is a Reply button.

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

                        1 Reply Last reply Reply Quote 0
                        • H Offline
                          Howard leslie
                          last edited by

                          TIG,
                          I've noticed that the 2d toolset will occasionally crash SU under the following circumstances.......
                          See attached skp.
                          Using your 2d Toolset, I'd like to be able to put 2 Fillets on some adjoining linework (3 adjacent lines)
                          The linework is not all on one plane. (2 horizontal lines, 1 vertical)
                          .......
                          first fillet - no problem.
                          second fillet (on adjoining lines but different plane)- will crash SU
                          ........
                          Solution - move reqd lines off to one side and fillet, then put lines back in place.
                          I sometimes use this toolset when working on 3d models (even though it was originally designed for 2d work) - its very useful
                          ........
                          If you have time and could look into this it would be most appreciated.
                          .......
                          Regards
                          Howard L'


                          Fillet_Crash.skp

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

                            Howard

                            I can't get it to crash at all !
                            It fillets the two nodes in turn without an error [@r=1000mm].
                            Also the order that they are picked has no effect either ?
                            I'm very puzzled...
                            What's you SUp version and OS ?
                            😕
                            Can anyone else manage to get this to fail ?
                            If so, how exactly ??
                            Testers please... 😒

                            TIG

                            1 Reply Last reply Reply Quote 0
                            • M Offline
                              Michaelv
                              last edited by

                              No problem here, Mac OS and version 5.1(Mac) of tools.
                              Tried all combinations of sequences

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

                                I don't think it's TIG's plugin. The first time I opened the file I got a crash before I'd even tried to do anything with any tool. No idea why it crashed. I opened the file a second time and put in fillets with a 1000mm radius on the original set of lines with no trouble.

                                Etaoin Shrdlu

                                %

                                (THERE'S NO PLACE LIKE)

                                G28 X0.0 Y0.0 Z0.0

                                M30

                                %

                                1 Reply Last reply Reply Quote 0
                                • H Offline
                                  Howard leslie
                                  last edited by

                                  TIG,
                                  Thanks very much for your reply
                                  .........
                                  To answer your question:

                                  SU Pro 8.0.11752
                                  Windows Vista c/w Svc Pack 2
                                  (32 bit PC)

                                  Latest version of 2D Tools
                                  Text notes inside the #2d.rb file gives the version as

                                  v5.0 20100927

                                  ..........
                                  Really wierd how nobody else can reproduce this bug splat / behaviour
                                  Possible clash with another Ruby script ???
                                  .......
                                  Howard L'

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

                                    Howard, you may have hit the nail on the head. You might try to find out by removing other plugins temporarily and trying the fillets.

                                    Etaoin Shrdlu

                                    %

                                    (THERE'S NO PLACE LIKE)

                                    G28 X0.0 Y0.0 Z0.0

                                    M30

                                    %

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

                                      As the title-bar says "v5.2" you could also try upgrading to the latest version...
                                      @unknownuser said:

                                      v5.1 20111201 Newly reported glitch fixed with 2dLine, so that now pressing the keyboard '0' when typing in a number on a PC it doesn't mistake for TAB >> Z-height!
                                      v5.2 20120228 2dFillet segment range adjusted to >=2 <=999.
                                      ??? I don't think any of these changes are important BUT you never know 😕

                                      TIG

                                      1 Reply Last reply Reply Quote 0
                                      • H Offline
                                        Howard leslie
                                        last edited by

                                        TIG,
                                        The version of 2D Tools that I have installed is from 2D_Tools52.zip.
                                        When I got the bug splats I made sure I had the latest version before reporting any possible bugs.
                                        ...........
                                        The text I quoted above was from the notes inside the #2d.rb file.
                                        I shouldn't have quoted this - its a bit misleading - as I see now that there are many *.rb files inside the zip file that you may have updated on the last release - not just the one.
                                        ............
                                        If its tricky to track the bug down / reproduce the fault - don't worry about it as I can work round it.
                                        However, if I notice anything else, or any other possible leads I'll report it.
                                        .............
                                        Brilliant plugin by the way
                                        ..............
                                        Thanks once again

                                        Howard L'

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

                                          Did you try removing the other plugins in the Plugins folder and running just 2D Tools? It doesn't appear to be a bug in the 2D Tools set. If it was, there'd be a large number of complaints and that doesn't seem to be the case.

                                          Etaoin Shrdlu

                                          %

                                          (THERE'S NO PLACE LIKE)

                                          G28 X0.0 Y0.0 Z0.0

                                          M30

                                          %

                                          1 Reply Last reply Reply Quote 0
                                          • ninomaydaN Offline
                                            ninomayda
                                            last edited by

                                            Superb Tool. A "must" to all SKPrs. Attached please find Xcel sheet to assist calculating text size dependant on final presentation (Layout) drawing scales.


                                            Text Height Scale Factor

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 21
                                            • 22
                                            • 23
                                            • 24
                                            • 25
                                            • 39
                                            • 40
                                            • 23 / 40
                                            • First post
                                              Last post
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement