Jump to content

Recommended Posts

Posted (edited)
  On 3/27/2025 at 10:36 PM, Nikon said:

@GLAVCVS  @ronjonp

Thank you, your codes are working well!

Expand  

Glad to help : ) Here's another that is not a block.

(defun c:foo (/ p)
  (while (setq p (getpoint "\\nPick a point: "))
    (entmake (list '(0 . "LWPOLYLINE")
		   '(100 . "AcDbEntity")
		   '(67 . 0)
		   '(8 . "L-MVIEW")
		   '(100 . "AcDbPolyline")
		   '(90 . 4)
		   '(70 . 129)
		   '(38 . 0)
		   '(39 . 0)
		   (cons 10 p)
		   '(40 . 40)
		   '(41 . 40)
		   '(42 . 0)
		   '(91 . 0)
		   (cons 10 (setq p (mapcar '+ '(1000 0) p)))
		   '(40 . 0)
		   '(41 . 0)
		   '(42 . 0)
		   '(91 . 0)
		   (cons 10 (setq p (mapcar '+ '(0 400) p)))
		   '(40 . 40)
		   '(41 . 40)
		   '(42 . 0)
		   '(91 . 0)
		   (cons 10 (setq p (mapcar '+ '(-1000 0) p)))
		   '(40 . 0)
		   '(41 . 0)
		   '(42 . 0)
		   '(91 . 0)
	     )
    )
  )
  (princ)
)

 

Edited by ronjonp
  • Like 1
Posted (edited)
  On 3/27/2025 at 10:46 PM, ronjonp said:

Glad to help : ) Here's another that is not a block.

Expand  

@ronjonp huge thank!And this code performs its task well.

The code allows you to insert multiple rectangles...

Edited by Nikon

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...