<?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: Help creating an array with LISP in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13643514#M202</link>
    <description>&lt;P&gt;Just a comment I use Ldata rather than&amp;nbsp;"userr1" as some one elses code may overwrite the user variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vlax-ldata-get "Window" "Defhgt")

(vlax-ldata-put "Window" "Defhgt" defhgt)&lt;/LI-CODE&gt;</description>
    <pubDate>Thu, 22 May 2025 00:40:41 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2025-05-22T00:40:41Z</dc:date>
    <item>
      <title>Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13640855#M196</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need some help to create an array with for the rectangle 3 (the one laying on the bottom), having 1 column, 1 row and 6 levels with a total height of the user's height input (95 or 119) -0.75", so the top rectangle is flush with the walls holding it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new using LISP, so I don't know completely how the syntaxis for calling commands and entering their values works. I hit the wall when I tried to call the ARRAYREC command, just can't make it work. I also don't know if it would be easier to create copies of the entity and spacing them equally instead to get the same result, because I would need to explode the array after anyway. Like I said I have been using LISP only for a few hours.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code that I managed to make work so far.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Any help is appreciated.&lt;BR /&gt;Thank you.&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:Createfiller (/ pt len ht rect1-base rect2-base rect3-base rect4-base rect5-base rect1 rect2 rect3 rect4 rect5)
  ;; Prompt for the insertion point (base point)
  (setq pt (getpoint "\nSpecify insertion point: "))

  ;; Prompt for the length
  (setq len (getdist "\nEnter length of the rectangle: "))

  ;; Prompt for the height (either 95 or 119)
  (setq ht (getint "\nEnter height (95 or 119 inches): "))
  
  ;; Ensure height is either 95 or 119
  (while (not (or (= ht 95) (= ht 119)))
    (setq ht (getint "\nInvalid height. Enter height (95 or 119 inches): "))
  )

  ;; Draw the first rectangle:
  (setq rect1-base pt)
  (command "_.rectangle" rect1-base (list (+ (car rect1-base) 0.25) (+ (cadr rect1-base) len)))
  (setq rect1 (entlast))  ;; Capture the first rectangle
  ;; Extrude rectangle 1 to the user height
  (command "_.extrude" rect1 "" (rtos ht 2 2))

  ;; Draw the second rectangle:
  (setq rect2-base (list (+ (car pt) 0.25) (cadr pt)))
  (command "_.rectangle" rect2-base (list (+ (car rect2-base) 2.5) (+ (cadr rect2-base) 0.75)))
  (setq rect2 (entlast))  ;; Capture the second rectangle
  ;; Extrude rectangle 2 to the user height
  (command "_.extrude" rect2 "" (rtos ht 2 2))

  ;; Draw the third rectangle: 
  (setq rect3-base (list (+ (car pt) 0.25) (+ (cadr pt) 0.75)))
  (command "_.rectangle" rect3-base (list (+ (car rect3-base) 2.5) (+ (cadr rect3-base) (- len 1.5))))
  (setq rect3 (entlast))  ;; Capture the third rectangle
  ;; Extrude rectangle 3 to 0.75"
  (command "_.extrude" rect3 "" "0.75")

  ;; Draw the fourth rectangle: 
  (setq rect4-base (list (+ (car pt) 0.25) (+ (cadr pt) (- len 0.75)))) ;; Fixed the base point
  (command "_.rectangle" rect4-base (list (+ (car rect4-base) 2.5) (+ (cadr rect4-base) 0.75)))
  (setq rect4 (entlast))  ;; Capture the fourth rectangle
  ;; Extrude rectangle 4 to the user height
  (command "_.extrude" rect4 "" (rtos ht 2 2))

  ;; Draw the fifth rectangle: 
  (setq rect5-base (list (+ (car pt) 2.75) (cadr pt))) ;; Fixed the base point
  (command "_.rectangle" rect5-base (list (+ (car rect5-base) 0.25) (+ (cadr rect5-base) len)))
  (setq rect5 (entlast))  ;; Capture the fifth rectangle
  ;; Extrude rectangle 5 to the user height
  (command "_.extrude" rect5 "" (rtos ht 2 2))

  ;; Finished
  (princ "\nFiller created.")
  (princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 May 2025 18:03:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13640855#M196</guid>
      <dc:creator>ChrisSXYPP</dc:creator>
      <dc:date>2025-05-20T18:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13640906#M197</link>
      <description>&lt;P&gt;PLEASE edit your post to REPASTE the lisp code formatting it as LISP.&amp;nbsp; This will make it MUCH easier for someone to try and help you as it'll be easier for us to read.&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="doni49_0-1747760904111.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1535469iD7A35F5BAE757972/image-size/medium?v=v2&amp;amp;px=400" role="button" title="doni49_0-1747760904111.png" alt="doni49_0-1747760904111.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="doni49_1-1747760936266.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1535470i1156496B434AE4D1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="doni49_1-1747760936266.png" alt="doni49_1-1747760936266.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 17:09:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13640906#M197</guid>
      <dc:creator>doni49</dc:creator>
      <dc:date>2025-05-20T17:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13641006#M198</link>
      <description>&lt;P&gt;It appears that you're looking to be able to write a "command" (something a that a general user might use) that will call other sub-routines.&amp;nbsp; Correct?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's start with a few basics:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;You can type AutoLisp code directly into the command line or you can load it from the lsp file.&lt;/LI&gt;&lt;LI&gt;The code can be one-time use -- meaning that if you wanted to run it again, you'd have to RELOAD the lisp code either at the command line or from the lsp file.&lt;/LI&gt;&lt;LI&gt;Within that code, you can define a function.&amp;nbsp; That's PROBABLY the part of code that you want your command to run.&lt;/LI&gt;&lt;LI&gt;A function can be defined as a "command" by putting &lt;STRONG&gt;C:&lt;/STRONG&gt; in front of the function name.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;So here are a few examples:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This first example is something I've typed MANY times at the command line over the years.&amp;nbsp; If I want to offset a line that is exactly half the distance between 2 points and I want to keep reusing that distance, I type the following when the offset command asks for a distance.&amp;nbsp; The GETDIST function prompts for a distance.&amp;nbsp; Then the divide function (the slash) divides it in half.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(/ (getdist) 2)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is an example of a function that could be used from within a command.&amp;nbsp; It accepts an argument (an angle in radians) and returns the angle in degrees.&amp;nbsp; By including x within the first set of parentheses after the function name, autolisp recognizes it as an argument and replaces x with the value (provided at runtime) within the function itself.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun rtd (x) (* x (/ 180.0 pi)))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now we have a command (a special type of function) that will use the function from the last example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:AngleInDegrees()
  (princ (rtd (getangle "Angle:  " (getPoint "Start Point"  ))))
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;.&amp;nbsp; The Getangle function returns a value in RADIANS.&amp;nbsp; RTD will convert that to degrees.&amp;nbsp; Then because it's the last thing the function outputs, that's what will be displayed to you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 18:12:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13641006#M198</guid>
      <dc:creator>doni49</dc:creator>
      <dc:date>2025-05-20T18:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13641017#M199</link>
      <description>&lt;P&gt;One more quick example.&amp;nbsp; There have been a few rare instances in which I wanted to call a command (the special type of autolisp function listed above).&amp;nbsp; So if for some reason I wanted my lisp routine to run the AngleInDegrees function, I'd call it by way of the following code:&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(c:AngleInDegrees)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2025 18:17:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13641017#M199</guid>
      <dc:creator>doni49</dc:creator>
      <dc:date>2025-05-20T18:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13641448#M200</link>
      <description>&lt;P&gt;To get to your example dwg its probably simpler just using lisp rather than array, the solid is copied vertically ends added, top bottom added, just working in 3D.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Copy vertical, select object, base point 0,0,0 new point 0,0,Y Enter.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a look at this very similar, you make a front end entering all the values then draw it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 01:26:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13641448#M200</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-05-21T01:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13643308#M201</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15984598"&gt;@ChrisSXYPP&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;check this 3DW command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wall direction can go to right (+X) or left (-X) as the wall width can go to up (+Y) or down (-Y)&lt;/P&gt;&lt;P&gt;also height can go up (+Z) or down (-Z)&lt;/P&gt;&lt;P&gt;you can undo the all process with one undo (like any other std command)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;enjoy&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(defun c:3dw (/ _allowed_height _depth askHeight draw_line 			; local functions
	        PANEL-WIDTH BEAMD-WIDTH savOrthoMode defhgt ss			; local variables
	        p0 p1 p2 p3 hgt wth ename g0 g1 g2 g3 idx interval pts^)	; local variables

 ; return T if n is 95 or 119
 (setq _allowed_height (lambda (n) (member n '(-95 95 -119 119)))) ; anonymous function
 (setq _depth (lambda (h d) (if (minusp h) (* -1 d) d)))   ; anonymous function
  
 ; return allowed height
 (defun askHeight (pt def / val)
  (while (not (_allowed_height val))
   (initget 2)
   (setq val (getdist pt "\nHeight (95 or 119): "))

   (cond
    ((not val)
     (setq val def)
    ); case
    ((not (_allowed_height val))
     (prompt "\nAllowed value of 95 or 119 only.")
     (setq val nil)
    ); case
    ( t
     (setq def val)
    ); case
   ); cond
  ); while

  val
 ); askHeight


 (defun draw_line (t0 t1)
  (entmakex
   (list
    '(0 . "LINE")
    '(100 . "AcDbLine")
    (cons '10 (trans t0 1 0))
    (cons '11 (trans t1 1 0))
   ); list
  ); entmakex
 ); draw_line
 
  
 ; here start c:3dw
 (setvar "cmdecho" 0)	     ; disable commands echo
 (command "._undo" "_begin") ; start undo

 (setq PANEL-WIDTH 0.25) ; const
 (setq BEAMD-WIDTH 0.75) ; const
  
 (setq savOrthoMode (getvar "orthomode")) ; save ortho mode
 (setvar "orthomode" 1) ; enable ortho

 ; set default height
 (if (= (getvar "userr1") 0.0)
  (setq defhgt 95)
  (setq defhgt (getvar "userr1"))
 )
  
 (setq ss (ssadd)) ; declar selection set
  
 (if (and
       ; handle user input
       (setq p0 (getpoint "\nSpecify insertion point: "))
       (setq p1 (getpoint p0 "\nSpecify length: "))
       (ssadd (draw_line p0 p1) ss)
       (setq p2 (getpoint p0 "\nSpecify width: "))
       (ssadd (draw_line p0 p2) ss)
       (setvar "userr1" (setq hgt (askHeight p0 defhgt)))
     )
  (progn
   ; clear selection
   (foreach ename (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss)))
    (entdel ename)
   )
    
   (setq p3 (polar p1 (angle p0 p2) (distance p0 p2)))
   (setq wth (distance p0 p2))

   (setq g3 (polar p1 (angle p1 p3) PANEL-WIDTH))
   (command "._rectangle" "_None" p0 "_None" g3)
   (ssadd (entlast) ss) ; add to selection

   (setq g3 (polar p3 (angle p3 p1) PANEL-WIDTH))
   (command "._rectangle" "_None" p2 "_None" g3)
   (ssadd (entlast) ss);  ; add to selection

   (setq g0 (polar p0 (angle p0 p2) PANEL-WIDTH))
   (setq g1 (polar g0 (angle p0 p1) BEAMD-WIDTH))
   (setq g3 (polar g1 (angle p0 p2) (- wth (* PANEL-WIDTH 2))))
   (command "._rectangle" "_None" g0 "_None" g3)
   (ssadd (entlast) ss) ;  ; add to selection

   (setq g0 (polar p1 (angle p1 p3) PANEL-WIDTH))
   (setq g1 (polar g0 (angle p1 p0) BEAMD-WIDTH))
   (setq g3 (polar g1 (angle p1 p3) (- wth (* PANEL-WIDTH 2))))
   (command "._rectangle" "_None" g0 "_None" g3)
   (ssadd (entlast) ss) ;  ; add to selection
   (command ".extrude" "_si" ss "_None" hgt)

   (setq g0 (polar (polar p0 (angle p0 p1) BEAMD-WIDTH) (angle p0 p2) PANEL-WIDTH))
   (setq g3 (polar (polar p3 (angle p3 p2) BEAMD-WIDTH) (angle p3 p1) PANEL-WIDTH))
   
   ; bottom beam
   (command "._rectangle" "_None" g0 "_None" g3)
   (command "._extrude" "_si" "_Last" "_None" (_depth hgt BEAMD-WIDTH))
   (setq ename (entlast))

   (setq idx 1 interval (/ (- hgt (_depth hgt BEAMD-WIDTH)) 5))
   (repeat 5
    (setq pts^ (cons (list 0.0 0.0 (* idx interval)) pts^))
    (setq idx (1+ idx))
   ); repeat
   
   (command "._copy" "_si" ename "_Multiple" "_None" "0,0" "_None" (car (reverse pts^))) ; first copy
   ; other copies
   (foreach pt (cdr (reverse pts^))
    (command "_None" pt)
   ); foreach
   (command "")
  ); progn
 ); if

 (setvar "orthomode" savOrthoMode) ; restore ortho mode
  
 (command "._undo" "_end") ; undo end
 (setvar "cmdecho" 1) 	   ; enable command echo
  
 (princ) ; clean exit
) ; c:3dw&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 May 2025 21:17:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13643308#M201</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2025-05-21T21:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13643514#M202</link>
      <description>&lt;P&gt;Just a comment I use Ldata rather than&amp;nbsp;"userr1" as some one elses code may overwrite the user variables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(vlax-ldata-get "Window" "Defhgt")

(vlax-ldata-put "Window" "Defhgt" defhgt)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 22 May 2025 00:40:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13643514#M202</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-05-22T00:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13646182#M203</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could it be, the OP did not like my solution?&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":loudly_crying_face:"&gt;😭&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 09:48:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13646182#M203</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2025-05-23T09:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13651973#M204</link>
      <description>&lt;P&gt;Thank you very much for the code, Moshe.&lt;/P&gt;&lt;P&gt;Now I need to figure it out how it works haha. But it can do the job faster, for sure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 May 2025 15:38:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13651973#M204</guid>
      <dc:creator>ChrisSXYPP</dc:creator>
      <dc:date>2025-05-27T15:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Help creating an array with LISP</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13655540#M205</link>
      <description>&lt;P&gt;This would be my approach have a look at the video posted earlier.&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="SeaHaven_0-1748501230180.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1538393iC7C77B21FA28FDAE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SeaHaven_0-1748501230180.png" alt="SeaHaven_0-1748501230180.png" /&gt;&lt;/span&gt;&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>Thu, 29 May 2025 06:47:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/help-creating-an-array-with-lisp/m-p/13655540#M205</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-05-29T06:47:17Z</dc:date>
    </item>
  </channel>
</rss>

