×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Using Telegram bot to write a code in Autolisp

Using Telegram bot to write a code in Autolisp

Using Telegram bot to write a code in Autolisp

(OP)
This is address of a Telegram bot that works based on the AI:


https://t.me/OpenAiChat_bot

I asked it to write a code in Autolisp computer language to list coordinates of selected points and below is its answer:


(defun c:listcoords ()
(setq SS (ssget))
(setq pts ssleng(SS) ; set number of points in the selection set)

(if (not (= 0 pts)) ; if more than 0 points were selected
(prompt "\\Select Points:")
(princ " \\No points selected.") ; print message to console and exit if none selected

(foreach p ss ; loop through each point object in list one at a time
(initget 5)
(setq PntPt(trans(cdr(assoc 10(entget p)))) ; store coordinates of point in variable

(prompt " \\Point coordiantes are:") ; prompt user for input in console window

(princ " X = " PntPt[0] ", Y = " PntPt1 ) ; print x,y coordinate values in autocad command window

) ;; end foreach loop

) ;; end IF statement

) ;; close funciton definition

Nothing is more fairly distributed than common sense: no one thinks he needs more of it than he already has. Rene Descartes

Replies continue below

Recommended for you

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members! Already a Member? Login



News


Close Box

Join Eng-Tips® Today!

Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.

Here's Why Members Love Eng-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close