<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Reverse rolling ball? Is it possible? in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272388#M61019</link>
    <description>How about posting a sample drawing?  I'd like to see what might work.</description>
    <pubDate>Tue, 27 Apr 2021 15:51:28 GMT</pubDate>
    <dc:creator>john.uhden</dc:creator>
    <dc:date>2021-04-27T15:51:28Z</dc:date>
    <item>
      <title>Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10271930#M61007</link>
      <description>&lt;P&gt;Does anyone know how I could get a reverse rolling ball lisp working?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically I have a cities property lines drawing and I have to separate the lines touching the road into a Right of Way layer, and keep the internal lines as property lines. I do have a road center line drawing that could be uses as a center line for a routine using something like&amp;nbsp;&lt;SPAN&gt;vlax-curve-getClosestPointTo maybe?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These drawings are huge, so I currently do them manually for the sections I need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The images below are what I start with and then manually select to change it to the Right of way layer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 13:35:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10271930#M61007</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T13:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272161#M61008</link>
      <description>&lt;P&gt;Well, it seems things would be a snap if the right of way around the block were a polyline.&lt;/P&gt;
&lt;P&gt;As long as no property side line intersects the right of way at an endpoint, you could try using my QJOIN to create the polyline right of way.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun C:QJOIN ( / *error* @Anonymous vars vals |e |ok |ent |etyp |make |ss |ssl |layer
                   |obsel$ |j |elev |space |ans)
   ;* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
   ;*                                                                           *
   ;*         QJOIN.LSP   by    John F. Uhden                                   *
   ;*                           2 Village Road                                  *
   ;*                           Sea Girt, NJ  08750                             *
   ;*                                                                           *
   ;* * * * * * * * * * * *  Do not delete this heading!  * * * * * * * * * * * *

   ; Program automatically joins to one selected line, arc, or polyline
   ; all possible lines, arcs, and polylines on the same layer and elevation.

   ; v3.0 (10-21-97) added support for R14 LWPOLYLINEs
   ; v15.00 (04-07-00) for R15
   ; v15.01 (10-14-02) fixed missing |elev for LWPOLYLINE
   ; v15.02 (08-07-04) added "peditaccept" for R16+
   ; v16.0  (12-19-19) converted to freeware for Challoner, and modernized

   (gc)
   (prompt "\nQJOIN v16.0 (c)1994-2019, John F. Uhden")
   (vl-doc-set '$cv_cmdname (getvar "cmdnames"))

   (defun *error* (|err)
      (@reset)
      (if (wcmatch (strcase |err) "*CANCEL*,*QUIT*")
         (vl-exit-with-error "\r                                              ")
         (vl-exit-with-error (strcat "\r*ERROR*: " |err))
      )
   )
   (defun @Anonymous ()
      (mapcar 'setvar vars vals)
      (vl-doc-set '$cv_cmdname "")
      (vla-endundomark *doc*)
      (princ)
   )
   ;;-------------------------------------------
   ;; Initialize drawing and program variables:
   ;;
   (setq *acad* (vlax-get-acad-object))
   (setq *doc* (vlax-get *acad* 'ActiveDocument))
   (setq vars '("cmdecho" "highlight"))
   (setq vals (mapcar 'getvar vars))
   (setq |obsel$ "  Object selected is a(n) "
         |ok nil
         |e nil
         |ss nil
   )
   (vla-endundomark *doc*)
   (vla-startundomark *doc*)

   (if (setq |e (entsel "\nSelect arc, line, or polyline: "))
      (progn
         (setq |e (car |e)
               |ent (entget |e)
               |etyp (cdr (assoc 0 |ent))
               |layer (cdr (assoc 8 |ent))
               |elev (last (cdr (assoc 10 |ent)))
         )
         (if (setq |space (assoc 67 |ent))
            (setq |space (cdr |space))
            (setq |space 0)
         )
         (cond
            ((= |etyp "ARC")(setq |make 1 |ok 1))
            ((= |etyp "LINE")
               (if (= (last (cdr (assoc 10 |ent)))(last (cdr (assoc 11 |ent))))
                  (setq |make 1 |ok 1)
                  (prompt (strcat |obsel$ "3DLINE."))
               )
            )
            ((= |etyp "LWPOLYLINE")(setq |ok 1 |elev (cdr (assoc 38 |ent))))
            ((= |etyp "POLYLINE")
               (cond
                  ((&amp;gt; (boole 1 8 (cdr (assoc 70 |ent))) 0)
                     (prompt (strcat |obsel$ "3DPOLY."))
                  )
                  ((&amp;gt; (boole 1 16 (cdr (assoc 70 |ent))) 0)
                     (prompt (strcat |obsel$ "3DMESH."))
                  )
                  (1 (if (= (boole 1 1 (cdr (assoc 70 |ent))) 0)
                        (setq |ok 1 |make nil)
                        (prompt "  Polyline is closed.")
                     )
                  )
               )
            )
            (1 (prompt (strcat |obsel$ |etyp ".")))
         )
      )
   )
   (if (and |e (= 4 (logand (cdr (assoc 70 (tblsearch "LAYER" |layer))) 4)))
      (setq |ok (prompt (strcat "\nLayer " |layer " is LOCKED!")))
   )
   (if (and |e |ok)
      (setq |ss (ssget "X"
         (list
            (cons 8 |layer)
            (cons 67 |space)
            (cons -4 "&amp;lt;OR")
               (cons -4 "&amp;lt;AND")
                  (cons 0 "LINE")
                  (cons -4 "*,*,=")(cons 10 (list 0.0 0.0 |elev))
                  (cons -4 "*,*,=")(cons 11 (list 0.0 0.0 |elev))
               (cons -4 "AND&amp;gt;")
               (cons -4 "&amp;lt;AND")
                  (cons 0 "ARC")
                  (cons -4 "*,*,=")(cons 10 (list 0.0 0.0 |elev))
               (cons -4 "AND&amp;gt;")
               (cons -4 "&amp;lt;AND")
                  (cons 0 "POLYLINE")
                  (cons -4 "&amp;lt;NOT")
                  (cons -4 "&amp;amp;")(cons 70 (+ 1 8 16 32 64))
                  (cons -4 "NOT&amp;gt;")
                  (cons -4 "*,*,=")(cons 10 (list 0.0 0.0 |elev))
               (cons -4 "AND&amp;gt;")
               (cons -4 "&amp;lt;AND")
                  (cons 0 "LWPOLYLINE")
                  (cons -4 "&amp;lt;NOT")
                  (cons -4 "&amp;amp;")(cons 70 1)
                  (cons -4 "NOT&amp;gt;")
                  (cons -4 "=")(cons 38 |elev)
               (cons -4 "AND&amp;gt;")
            (cons -4 "OR&amp;gt;")
         ))
      )
      (setq |ss nil)
   )
   (if (and |ss (&amp;gt; (setq |ssl (sslength |ss)) 1))
      (progn
         (mapcar 'setvar vars '(0 0))
         (command "_.pedit" |e)
         ;; added "peditaccept" (08-07-04)
         (if (and |make (/= (getvar "peditaccept") 1))(command "_Y"))
         (command "_J" |ss "")
         (if (= (getvar "plinegen") 1)(command "_LT" "_ON"))
         (command "_X")
         (if (setq |ss (ssget "P"))
            (setq |j (- |ssl (sslength |ss)))
            (setq |j |ssl)
         )
         (if (= (getvar "highlight") 0)
            (prompt "\nIf you saw nothing happen, it's because HIGHLIGHT is OFF.")
         )
         (prompt (strcat "\nJoined " (itoa |j) " entities."))
      )
      (if (and |e |ok)(prompt "\nNo entities found to join."))
   )
   (@reset)
)
(defun c:QJ ()(c:QJOIN))
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 14:46:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272161#M61008</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-04-27T14:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272175#M61009</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9071295"&gt;@J_Spurgeon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you using Civil 3D?&lt;/P&gt;&lt;P&gt;Yes: Use the &lt;A href="https://civilimmersion.typepad.com/civil_immersion/2016/06/tool-for-tuesday-lineworkshrinkwrap.html" target="_blank" rel="noopener"&gt;LINEWORKSHRINKWRAP&lt;/A&gt; command&lt;/P&gt;&lt;P&gt;No: Use Lee Mac's &lt;A href="http://www.lee-mac.com/outlineobjects.html" target="_blank" rel="noopener"&gt;OUTLINE&lt;/A&gt; command&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 14:50:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272175#M61009</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2021-04-27T14:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272186#M61010</link>
      <description>&lt;P&gt;Fantastic routine, but unfortunately I have to explode and run overkill on the property lines because they mainly come in joined together as individual boxes or weird polygons.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jspurgeonK8M55_1-1619535223318.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/912270i904E4F90F84EB654/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jspurgeonK8M55_1-1619535223318.png" alt="jspurgeonK8M55_1-1619535223318.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 14:53:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272186#M61010</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T14:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272202#M61011</link>
      <description>&lt;P&gt;I am using Map 3d. Lee's command is super close to what I need, however it gets confused on some important spots like this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jspurgeonK8M55_0-1619535519945.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/912274i313177FBCC0A2EBE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jspurgeonK8M55_0-1619535519945.png" alt="jspurgeonK8M55_0-1619535519945.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will look further into his routine and see if i can make some alterations to help my application.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 14:59:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272202#M61011</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T14:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272225#M61012</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9071295"&gt;@J_Spurgeon&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming you are using GIS data from somewhere, that is where you are seeing your "errors" it is not from Lee's command. It is because when large quantities of linework are digitized (normally for GIS use) there are gaps&amp;nbsp; that can be created by nodes not perfectly aligning from adjoining entities. So there is no single "fix" unless you somehow customize a routine to identify these gaps (wouldn't be easy). You will just have to fix these imperfections as you encounter them. Usually not too painful of a process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:05:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272225#M61012</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2021-04-27T15:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272236#M61013</link>
      <description>&lt;P&gt;Thank you again, I am playing with it now to see what would speed it up. These parcel drawings are the size of counties, so its taking a while. But yes it is GIS data, so the nodes and lines are very inconsistent.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate the help!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:10:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272236#M61013</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T15:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272256#M61014</link>
      <description>&lt;P&gt;I would think you could draw an enclosing rectangle or circle or something around a portion of the map, outboard of the area you want turn off the center-line Layer, and just use &lt;STRONG&gt;BOUNDARY&lt;/STRONG&gt; or &lt;STRONG&gt;BPOLY&lt;/STRONG&gt;, picking within a roadway somewhere.&amp;nbsp; It would make more Polylines than you need [you can get rid of the unneeded ones along with the enclosing shape], but it should get the perimeter(s) you're looking for.&amp;nbsp; [That is, of course, subject to the same possibility of little gaps that can cause incorrect outlines using custom routines.]&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:13:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272256#M61014</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-04-27T15:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272272#M61015</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9071295"&gt;@J_Spurgeon&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;These parcel drawings are the size of counties, so its taking a while.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is a red flag to me that perhaps you are not being as efficient as you should be with whatever you are doing.&lt;/P&gt;&lt;P&gt;What is your desired end goal? Why do you need to create ROW for "country" sized areas of parcels? I can not imagine that you would need to deliver a drawing that large to a client ever, plus it would be painful to work with.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you give me a better idea of what you are trying to accomplish, perhaps we can suggest improvements to your workflow. Why do you have to create ROW for all parcels that you obtained from GIS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:21:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272272#M61015</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2021-04-27T15:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272321#M61016</link>
      <description>&lt;P&gt;I am not trying to run it on the whole drawing, I usually clip out the part that I need out of the main parcel drawing, which is still pretty large. Usually 5-10 mile long spans.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My end goal is to have the ROW lines on a separate layer than what we call the property lines. Basically I have to change the line type of the ROW lines that follow the roads.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:33:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272321#M61016</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T15:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272325#M61017</link>
      <description>&lt;P&gt;I just tried this with no luck, it didn't recognize the outside bounding poly as a useable poly. So it said I had no inner shapes detected. Thanks for the suggestion though, I have not used the boundary command before and it could prove useful in the future!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:35:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272325#M61017</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T15:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272372#M61018</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp; I restarted CAD and this is working pretty decent now. Thanks!&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:46:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272372#M61018</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T15:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272388#M61019</link>
      <description>How about posting a sample drawing?  I'd like to see what might work.</description>
      <pubDate>Tue, 27 Apr 2021 15:51:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272388#M61019</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-04-27T15:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272402#M61020</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;Here is a clipping of a drawing with the road center lines as well.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 15:54:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272402#M61020</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T15:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272544#M61021</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;Here is a second copy, this is without the poly lines being xploded&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 16:45:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272544#M61021</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T16:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272605#M61022</link>
      <description>QJOIN did not work as every front lot corner is also a right-of-way&lt;BR /&gt;endpoint.  Right now I am running a homegrown MENDLINEs program (intended&lt;BR /&gt;for a little different purpose).  It is taking almost literally forever as&lt;BR /&gt;it is trying to operate on every line on the PARCEL layer in the drawing.&lt;BR /&gt;I am not expecting pleasing results, but it might be tweaked a little to&lt;BR /&gt;work better for this situation.  I just hate doing things manually if&lt;BR /&gt;there's some kinda slam-dunk approach available.  That's why I'm interested.&lt;BR /&gt;&lt;BR /&gt;So, are you J. Spurgeon or J.S. Purgeon?</description>
      <pubDate>Tue, 27 Apr 2021 17:19:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272605#M61022</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2021-04-27T17:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272612#M61023</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9071295"&gt;@J_Spurgeon&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I just tried this with no luck, it didn't recognize the outside bounding poly as a useable poly. So it said I had no inner shapes detected. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT color="#999999"&gt;&lt;EM&gt;[Whoops -- now I see your message about re-starting and it's working.&amp;nbsp; Anyway, since I made the pretty picture...]&lt;/EM&gt;&lt;/FONT&gt;&amp;nbsp; It worked for me.&amp;nbsp; I drew the red Circle, then a BOUNDARY command with a single pick within one of the roadways produced the green Polylines.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kent1Cooper_0-1619543951029.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/912343i24661AF48790F9A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kent1Cooper_0-1619543951029.png" alt="Kent1Cooper_0-1619543951029.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Any gaps in the source elements would corrupt the result, but I would think that if the zone boundary [my red Circle, your Polyline] is &lt;EM&gt;closed&lt;/EM&gt;, you would get &lt;EM&gt;something&lt;/EM&gt;.&amp;nbsp; Is everything on the same plane?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 17:25:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272612#M61023</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-04-27T17:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272662#M61024</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3930636"&gt;@john.uhden&lt;/a&gt;&amp;nbsp;Yea that's the difficult part, I thought for sure it would be possible to select the lines closest to the center line. I use rolling ball sometimes to make my own center lines, but I can't figure out the reverse of that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I completely agree, love it when something gets automated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And its J. Spurgeon lol Just realized I never changed my username.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 17:52:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272662#M61024</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T17:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272680#M61025</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;That actually seems to be dong a decent job in small sections. If I could get overkill to delete the line under the new poly line created by the boundary command then I might be set. For some reason its leaving them&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 17:48:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272680#M61025</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T17:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse rolling ball? Is it possible?</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272769#M61026</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, is there somewhere I can set the threshold for tighter angles? This is happening on radiused corners.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jspurgeonK8M55_1-1619548042677.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/912357i18B7D900E9D458B2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jspurgeonK8M55_1-1619548042677.png" alt="jspurgeonK8M55_1-1619548042677.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Green line was the one created by boundary tool&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 18:27:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/reverse-rolling-ball-is-it-possible/m-p/10272769#M61026</guid>
      <dc:creator>J_Spurgeon</dc:creator>
      <dc:date>2021-04-27T18:27:58Z</dc:date>
    </item>
  </channel>
</rss>

