• Login
sketchucation logo sketchucation
  • Login
🤑 30% Off | Artisan 2 on sale until April 30th Buy Now

[Plugin] Guide Tools (1.3.0) — 21 October 2010

Scheduled Pinned Locked Moved Plugins
99 Posts 34 Posters 106.8k 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.
  • T Offline
    thomthom
    last edited by 12 Oct 2010, 08:29

    @unknownuser said:

    @unknownuser said:

    Where edges are split where they intersect? Or where they overlap - like they often do in SU6 and older?

    I don't know, on the face I suppose 😳

    Something is lost in translation here - I mean should there be a CPoint only when two edges cross each other but doesn't split each other?

    @unknownuser said:

    So there are 2CPoint overlaped
    or they are automatical merged as one by SU as having same coordinates ?
    (same than you draw 2 lines ovelapped)

    I don't know - I haven't tested it. The plugin just adds a CPoint blindly.

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

    1 Reply Last reply Reply Quote 0
    • P Offline
      pilou
      last edited by 12 Oct 2010, 08:45

      I have just tested seems there are really 2 CPoints! 😮
      Maybe some annoyous 😉
      click image if scrool bar!
      doublecpoint.jpg

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

      1 Reply Last reply Reply Quote 0
      • T Offline
        TIG Moderator
        last edited by 12 Oct 2010, 09:14

        I think Pilou's issue with 'duplicated Cpoints' - i.e. at the same location in 3D space - is if they are used to place Instances later it will duplicate the Instances etc.
        When adding the new Cpoints it'd be relatively easy to test to see if there was a Cpoint already there.
        First make a collection of Cpoints in the current context [entities] and make an array of the 'position' of each one: then only add the new Cpoint if it's not already there - code-example...

        
        there=false
        cpoint_positions.each{|p|(there=true;break)if p==new_point}
        entities.add_cpoint(new_point) if not there
        
        

        You should still add coincident Cpoints if they are in different contexts [entities-sets]...

        TIG

        1 Reply Last reply Reply Quote 0
        • T Offline
          thomthom
          last edited by 12 Oct 2010, 09:31

          Slightly trimmed variant:
          entities.add_cpoint(new_point) unless cpoint_positions.any?{|pt|pt==new_point}

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

          1 Reply Last reply Reply Quote 0
          • P Offline
            pilou
            last edited by 18 Oct 2010, 08:37

            In fact that must be 6 points! 😒
            1 Center of circle
            1 Intersection of lines
            4 Intersection Lines Circle

            Here I have a lot of more 😉
            I have made Intersection before launch the plug Edge/edge (V 6)

            Edit I have found a Process
            General Intersection
            Hide Circle
            Call the Plug Guides Tool - Edge/edge
            Show Circle
            Select Circle
            Call ad Cpoint to Circle
            I have my six points 😎
            Easy for not numerous circles but for many ? 😉
            Ok I can use Selection Toys Circles ☀ 😉

            intersection.jpg

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

            1 Reply Last reply Reply Quote 0
            • T Offline
              thomthom
              last edited by 18 Oct 2010, 08:51

              Why do you hide and show the circle?

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

              1 Reply Last reply Reply Quote 0
              • P Offline
                pilou
                last edited by 18 Oct 2010, 08:58

                Yes see my edit text 😉
                In fact that must be Selection Toys "Arcs"
                Hide
                because the interections are made before 😉

                Process must be
                Ad CP Circle(s)
                General Intersection
                Selection Toys "Arcs"
                Hide
                Add CPoint Edge /Edge
                Show Hidden
                😎

                When Edge / Edge Cpoints are they "Doubled" between 2 segments of a same lines or not? (like my lines above after the intersection)
                (at the commune extremities)
                Seems not! 😎 (I have verified with the outliner) ☀

                You have just the problem of same arc centers of my previous old post 😉

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

                1 Reply Last reply Reply Quote 0
                • W Offline
                  watkins
                  last edited by 18 Oct 2010, 15:02

                  Dear Thomas,

                  Could the following be added to the suite of cpoint functions?

                  To place a construction point at the intersection of three orthogonal planes.

                  Thanks,
                  Bob

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    TIG Moderator
                    last edited by 18 Oct 2010, 18:08

                    @watkins said:

                    Dear Thomas,
                    Could the following be added to the suite of cpoint functions?
                    To place a construction point at the intersection of three orthogonal planes.
                    Thanks,
                    Bob

                    Should be straightforward...
                    Get line of the intersection of two of the planes.
                    get the intersection of the third plane and the line.
                    Add a cpoint...

                    TIG

                    1 Reply Last reply Reply Quote 0
                    • P Offline
                      pilou
                      last edited by 19 Oct 2010, 09:46

                      @ Thomthom
                      Does it possible to have an option for DWG export?

                      Problem is: Tocad don't import CP POINT !!! 😮
                      So circle center oe arc circle center info are losted!

                      So a possibility is to replace CPoints by 2 or 3 lines crossed.(3 axis)
                      (as "component" even Tocad lost the "component" it draw the lines! ☀
                      And each circle is tranformed in disc by ToCad.

                      So Replace CPoints by crossed lines will be fine for DWG export 😄

                      Of course the replacement can be made by Selection Cpoint/Put Component at Cpoints.
                      (problem of mutiple same CPoints must be also resolved) 😄

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

                      1 Reply Last reply Reply Quote 0
                      • T Offline
                        thomthom
                        last edited by 21 Oct 2010, 18:53

                        Version 1.3.0
                        CPoint at Camera Eye - Adds a construction point at the Camera eye.

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

                        1 Reply Last reply Reply Quote 0
                        • utilerU Offline
                          utiler
                          last edited by 21 Oct 2010, 22:27

                          Great addition Thom! All your work with rubies are very much appreciated!!!
                          👍

                          purpose/expression/purpose/....

                          1 Reply Last reply Reply Quote 0
                          • L Offline
                            lapx
                            last edited by 7 Jan 2011, 19:54

                            Tom,
                            Thanks! I've been searching for this for a while.

                            Best, Lapx.

                            1 Reply Last reply Reply Quote 0
                            • Bob JamesB Offline
                              Bob James
                              last edited by 30 Jan 2011, 09:12

                              @unknownuser said:

                              Drilling Milling[/url] by Menfin (French and English version) ☀

                              This looks like it would be very handy, but the forum is in French (only) and doesn't allow download without being a member of the forum. 😞

                              i7-4930K 3.4Ghz, 2x GTX780 6GB, 32GB DDR3-1600 ECC, OCZ Vertex 4 500GB, WD Black 3TB, 32TB NAS, 4x 27" Monitors, SpaceMouse Pro, X-keys XK-60

                              1 Reply Last reply Reply Quote 0
                              • D Offline
                                dedmin
                                last edited by 7 Feb 2011, 20:52

                                Is it possible to add "CPoint at Insertion Point" for groups also?

                                1 Reply Last reply Reply Quote 0
                                • T Offline
                                  thomthom
                                  last edited by 7 Feb 2011, 21:17

                                  @dedmin said:

                                  Is it possible to add "CPoint at Insertion Point" for groups also?

                                  I'll add it to the list.

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

                                  1 Reply Last reply Reply Quote 0
                                  • D Offline
                                    dedmin
                                    last edited by 7 Feb 2011, 21:18

                                    🎉 🎉 🎉

                                    1 Reply Last reply Reply Quote 0
                                    • L Offline
                                      Larsen
                                      last edited by 11 May 2011, 11:51

                                      Amazing tools!
                                      Thanks thomthom for your generosity.

                                      [Every form of thinking perish by excess of its basic principles.

                                      1 Reply Last reply Reply Quote 0
                                      • B Offline
                                        baiduaiya
                                        last edited by 20 May 2011, 09:26

                                        thank you very much.

                                        1 Reply Last reply Reply Quote 0
                                        • M Offline
                                          matt.gordon320
                                          last edited by 2 Nov 2011, 01:20

                                          Thank you so much! Amazing Tools as always...

                                          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