<?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 Is it possible to segment a line into evenly spaced point data? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11099958#M58832</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="201821253_0-1649742267592.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1053714i7EFEF006B19CFE7D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="201821253_0-1649742267592.png" alt="201821253_0-1649742267592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;I am trying to divide the following line into point data with a specified interval. &lt;/SPAN&gt;&lt;SPAN class=""&gt;And I want to get the coordinate values ​​of each points.&lt;BR /&gt;I tried 'xplode', 'break' command. But it isn't what I need.&lt;/SPAN&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 12 Apr 2022 05:54:20 GMT</pubDate>
    <dc:creator>201821253</dc:creator>
    <dc:date>2022-04-12T05:54:20Z</dc:date>
    <item>
      <title>Is it possible to segment a line into evenly spaced point data?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11099958#M58832</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="201821253_0-1649742267592.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1053714i7EFEF006B19CFE7D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="201821253_0-1649742267592.png" alt="201821253_0-1649742267592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;I am trying to divide the following line into point data with a specified interval. &lt;/SPAN&gt;&lt;SPAN class=""&gt;And I want to get the coordinate values ​​of each points.&lt;BR /&gt;I tried 'xplode', 'break' command. But it isn't what I need.&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Apr 2022 05:54:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11099958#M58832</guid>
      <dc:creator>201821253</dc:creator>
      <dc:date>2022-04-12T05:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to segment a line into evenly spaced point data?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11099988#M58833</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12322883"&gt;@201821253&lt;/a&gt;,&lt;BR /&gt;Did you try Command &lt;FONT color="#000080"&gt;&lt;STRONG&gt;DIVIDE&lt;/STRONG&gt;&lt;/FONT&gt;? Then you can use Data Extraction to get coordinates of the points.&lt;BR /&gt;Dave&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 06:13:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11099988#M58833</guid>
      <dc:creator>Pointdump</dc:creator>
      <dc:date>2022-04-12T06:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to segment a line into evenly spaced point data?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11100188#M58834</link>
      <description>&lt;P&gt;1) Use better MEASURE to specify a distance along the polyline and draw points (nodes) or insert blocks (it is an option) and then you can extract those datas...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) Second option, if i understand that you just want to extract coordinates of a polyline, this is a fast made lisp :&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:expts(/ profile result)
  (cond(
	(setq profile(entsel "\nSelectionnez la polyligne\n"))
	(setq result(mapcar 'cdr (vl-remove-if-not '(lambda (x) (= (car x) 10)) (entget(car profile)))))
	(foreach p result
	  (princ(strcat(rtos(car p)2 2)"," (rtos(cadr p)2 2)"\n")))))
  (princ)
  )&lt;/LI-CODE&gt;
&lt;P&gt;Load it, run EXPTS and you will get the coordinates...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) or 2) ?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 07:51:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11100188#M58834</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2022-04-12T07:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to segment a line into evenly spaced point data?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11105214#M58835</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12322883"&gt;@201821253&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;There is a great LISP that does just what you need. It Splits Polylines into equal segments you can check it out here: &lt;A href="https://skillamplifier.com/split-polyline-into-equal-segments/" target="_blank" rel="noopener"&gt;How to Split Polyline into a number of Segments or at Intervals?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 05:35:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11105214#M58835</guid>
      <dc:creator>Zlatislav.atanasov</dc:creator>
      <dc:date>2022-04-14T05:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to segment a line into evenly spaced point data?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11105867#M58836</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12322883"&gt;@201821253&lt;/a&gt;&amp;nbsp;wrote:
&lt;P class="1649936813352"&gt;&amp;nbsp;&lt;/P&gt;
&lt;SPAN class=""&gt;I am trying to divide the following line into point data with a specified interval. &lt;/SPAN&gt;&lt;SPAN class=""&gt;And I want to get the coordinate values ​​of each points.&lt;/SPAN&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you want the line [or arc, or polyline, or circle, or...] actually &lt;STRONG&gt;broken into pieces&lt;/STRONG&gt; at that interval, or do you just want the &lt;STRONG&gt;coordinates at locations along it&lt;/STRONG&gt; at that interval?&amp;nbsp; If the former, I have a &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/use-this-lisp-for-every-selected-objects-divide/m-p/8650594/highlight/true#M382309" target="_blank" rel="noopener"&gt;routine&lt;/A&gt; to do that by specifying the number of equal-length pieces you want it broken into, which could be edited to use a specified interval instead.&amp;nbsp; If the latter, in what form?&amp;nbsp; An AutoLisp list of point-coordinate lists?&amp;nbsp; Text in the drawing somehow?&amp;nbsp; An external file of some kind?&amp;nbsp; Etc.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 11:56:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-it-possible-to-segment-a-line-into-evenly-spaced-point-data/m-p/11105867#M58836</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2022-04-14T11:56:24Z</dc:date>
    </item>
  </channel>
</rss>

