<?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: Issue while generating line segments with a lisp code in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800587#M69110</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to run &lt;A href="https://github.com/DeepaMahm/misc/blob/master/check.py" target="_blank" rel="noopener"&gt;this code&lt;/A&gt; from python for generating these diagrams and the output dxf files&lt;/P&gt;&lt;P&gt;aren't generated for the inputs posted above (test1 and 2). The output dxf file is created successfully for the&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;sample 2D input posted in the original post. Could you please suggest if there is anything that has to be modified in the code for the 3D data points?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Please note: The function in lisp file is shared in the original post.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 13 Oct 2020 17:05:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-10-13T17:05:47Z</dc:date>
    <item>
      <title>Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800262#M69103</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;I am using the following AutoLISP code to generate line segments (&lt;A href="https://stackoverflow.com/questions/59752533/converting-a-graph-to-a-2d-diagram?noredirect=1&amp;amp;lq=1" target="_blank" rel="noopener"&gt;ref&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;defun graph &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; pts sls tls &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;   &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;lambda&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; l &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
        &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;foreach x l &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;text &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;cdr x&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;itoa &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;car x&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;))&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;0.0&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;1&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;))&lt;/SPAN&gt;
        &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;mapcar
           &lt;/SPAN&gt;&lt;SPAN class="str"&gt;'(lambda ( a b / p q r )
                (setq p (cdr (assoc a l))
                      q (cdr (assoc b l))
                      r (angle p q)
                )
                (entmake (list '&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;0&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;.&lt;/SPAN&gt; &lt;SPAN class="str"&gt;"LINE"&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;cons &lt;/SPAN&gt;&lt;SPAN class="lit"&gt;10&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; p&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;cons &lt;/SPAN&gt;&lt;SPAN class="lit"&gt;11&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; q&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="str"&gt;'(62 . 8)))
                (text
                    (mapcar '&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;lambda&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; x y &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(/&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(+&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; x y&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;2.0&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;))&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; p q&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
                    &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;rtos &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;distance p q&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
                    &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;if&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="kwd"&gt;and&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(*&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; pi &lt;/SPAN&gt;&lt;SPAN class="lit"&gt;0.5&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; r&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(&amp;lt;=&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; r &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(*&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; pi &lt;/SPAN&gt;&lt;SPAN class="lit"&gt;1.5&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)))&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;(+&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; r pi&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; r&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
                    &lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;
                &lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
            &lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;            sls tls
        &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;mapcar &lt;/SPAN&gt;&lt;SPAN class="str"&gt;'cons (vl-sort (append sls tls) '&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;&amp;lt;)&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; pts&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;defun text &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt; p s a c &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;entmake
        &lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;list
           &lt;/SPAN&gt;&lt;SPAN class="str"&gt;'(0 . "TEXT")
            (cons 10 p)
            (cons 11 p)
            (cons 50 a)
            (cons 01 s)
            (cons 62 c)
           '&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;40&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;.&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
           &lt;SPAN class="str"&gt;'(72 . 1)
           '&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;73&lt;/SPAN&gt; &lt;SPAN class="pun"&gt;.&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;2&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
        &lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;and the sample input for which the above code works fine is the following&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln"&gt;graph
   &lt;/SPAN&gt;&lt;SPAN class="str"&gt;'((75 25) (115 45) (90 60) (10 5) (45 0) (45 55) (0 25))
   '&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;(&lt;/SPAN&gt;&lt;SPAN class="lit"&gt;1&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;1&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;1&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;1&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;2&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;2&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;3&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;4&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;4&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;5&lt;/SPAN&gt; &lt;SPAN class="lit"&gt;6&lt;/SPAN&gt;&lt;SPAN class="pun"&gt;)&lt;/SPAN&gt;
   &lt;SPAN class="str"&gt;'(2 3 4 5 3 6 6 5 7 7 7)
)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;But I am not sure why the diagram is not created for an input where more data points are present.&lt;/P&gt;&lt;P&gt;Could someone kindly look at the input available &lt;A href="https://github.com/DeepaMahm/misc/blob/master/out.txt" target="_blank" rel="noopener"&gt;here&lt;/A&gt;? I am not sure why the drawing isn't created for this data.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 14:49:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800262#M69103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-13T14:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800325#M69104</link>
      <description>&lt;P&gt;A graph was created. although it doesnt look anything that make sense&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="chaos.png" style="width: 344px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/830834i95D09C9DA0593EE8/image-dimensions/344x516?v=v2" width="344" height="516" role="button" title="chaos.png" alt="chaos.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like somebodys john hancock or a super drunk guy handwriting&lt;/P&gt;
&lt;P&gt;Text removed for clarity&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 15:09:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800325#M69104</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2020-10-13T15:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800436#M69105</link>
      <description>&lt;P&gt;Everything is OK.&lt;/P&gt;&lt;P&gt;In provided data set you have a bunch of 3d points, and as a result you receive 3d graph. Use free orbit and look at the graph from different viewpoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 15:50:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800436#M69105</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-13T15:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800492#M69106</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's the expected output! Thanks for posting&lt;/P&gt;&lt;P&gt;Could you please check for the second input updated in the same file &lt;A href="https://github.com/DeepaMahm/misc/blob/master/out.txt" target="_blank" rel="noopener"&gt;here&lt;/A&gt;?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think there is a problem when the coordinates are negative. The drawing isn't created.&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, 13 Oct 2020 16:16:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800492#M69106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-13T16:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800495#M69107</link>
      <description>&lt;P&gt;Could you please check if it works fine with the second set of points updated &lt;A href="https://github.com/DeepaMahm/misc/blob/master/out.txt" target="_blank" rel="noopener"&gt;here&lt;/A&gt; ( test2)&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 16:18:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800495#M69107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-13T16:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800512#M69108</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's the expected output! Thanks for posting&lt;/P&gt;
&lt;P&gt;Could you please check for the second input updated in the same file &lt;A href="https://github.com/DeepaMahm/misc/blob/master/out.txt" target="_blank" rel="noopener"&gt;here&lt;/A&gt;?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Here you go&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Graph1 and graph2 as dwg.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW: its on 3D view now when you open the file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 16:25:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800512#M69108</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2020-10-13T16:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800528#M69109</link>
      <description>&lt;P&gt;I have tested it on that data set too. It is a 3d graph.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 16:32:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800528#M69109</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-13T16:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800587#M69110</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been trying to run &lt;A href="https://github.com/DeepaMahm/misc/blob/master/check.py" target="_blank" rel="noopener"&gt;this code&lt;/A&gt; from python for generating these diagrams and the output dxf files&lt;/P&gt;&lt;P&gt;aren't generated for the inputs posted above (test1 and 2). The output dxf file is created successfully for the&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;sample 2D input posted in the original post. Could you please suggest if there is anything that has to be modified in the code for the 3D data points?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Please note: The function in lisp file is shared in the original post.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 17:05:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800587#M69110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-13T17:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800615#M69111</link>
      <description>&lt;P&gt;Lisp code seems written ok, and there shouldn't be problem with 2s or 3d point, with positive or negative coordinate value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you run python code does it finish with&amp;nbsp;&lt;SPAN class="pl-s"&gt;"Process Finished"&lt;/SPAN&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 17:13:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800615#M69111</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-13T17:13:33Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800636#M69112</link>
      <description>&lt;P&gt;This is what I find&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="deepam3HBK2_0-1602609501783.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/830908i705AFAFF0542AFE9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deepam3HBK2_0-1602609501783.png" alt="deepam3HBK2_0-1602609501783.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;while running for test2. Unfortunately, I find only quit status and not `process completed`&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;test0 with 2D points runs fine without any issue from python.&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, 13 Oct 2020 17:19:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800636#M69112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-13T17:19:51Z</dc:date>
    </item>
    <item>
      <title>Re: Issue while generating line segments with a lisp code</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800646#M69113</link>
      <description>&lt;P&gt;try to replace&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;'(setvar "SECURELOAD" *LOAD_SECURITY_STATE*)\n'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"(setvar 'SECURELOAD *LOAD_SECURITY_STATE*)\n"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Oct 2020 17:28:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/issue-while-generating-line-segments-with-a-lisp-code/m-p/9800646#M69113</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-13T17:28:35Z</dc:date>
    </item>
  </channel>
</rss>

