What is AutoLISP in AutoCAD | What is the use of AutoLISP in AutoCAD

Поділитися
Вставка
  • Опубліковано 3 січ 2025

КОМЕНТАРІ •

  • @TheCanadianWelder
    @TheCanadianWelder Рік тому

    Thanks so much for this. I'm a longtime CAD user, and for an equally long time I have been hesitant to introduce LISP files into my workflow, because I have no programming experience and I guess that made me nervous. Thanks to your tutorial I realize now how easy and 'clean'/'safe' these are to load into a drawing, and they require no programming background at all.

  • @PGTutorials
    @PGTutorials 4 роки тому

    excellent video for lisp learner including me...thnk you

  • @raghunadhtandi8027
    @raghunadhtandi8027 4 роки тому

    Pleasure to watch the concept sir.

  • @beenay18
    @beenay18 Рік тому +1

    Thanks a lot!

  • @SoyJavero
    @SoyJavero 3 роки тому +1

    wow incredible tech

  • @adamchristopher5345
    @adamchristopher5345 2 роки тому +1

    Hello sir
    I have created customized block via through CUI in auto CAD
    I want to provide shortcut command that customized block
    For eg: CO for copy
    I want to provide PPP for my block

  • @nishthachopra7419
    @nishthachopra7419 3 роки тому

    Hello, I am looking for a lisp program for bricscad to create a rectangle with dimensions. Have you made any such video yet? Thanks in advance

  • @Chimpukya
    @Chimpukya 4 роки тому

    Is autoLISP available in advance steel?

  • @Bluefox1978
    @Bluefox1978 2 роки тому

    Geeky!!! 😍

  • @bhupathireddy7793
    @bhupathireddy7793 2 роки тому +1

    How to write new commend in lisp sir

  • @mdabdullahalmamun6635
    @mdabdullahalmamun6635 3 роки тому

    Dear sir,
    your video very helpfull.
    Sir,
    I need contour volume quantity lips.

  • @Mr.1997-July
    @Mr.1997-July 3 роки тому

    Can you make a video for main function with sub function knit working

  • @PANDURANG99
    @PANDURANG99 4 роки тому

    Programming for printing particular rectangle

  • @ramkumargourarajula9528
    @ramkumargourarajula9528 5 років тому

    Hi sir. May I know the good book to understand that concpet

    • @CADCAMTutorials
      @CADCAMTutorials  5 років тому

      www.caddsoftsolutions.com/AutoLISP-VisualLISP-DCL-Books.htm

  • @faridheidarian9755
    @faridheidarian9755 6 років тому

    Should I know C## for this?

  • @afnanassociate5083
    @afnanassociate5083 6 років тому

    nice work.
    please make and upload the lisp for road cross section.
    how can we draw the road cross section in autocad with lisp

  • @gyanguru6400
    @gyanguru6400 4 роки тому

    Sir, I need a program to show Physical progress at site on drawing linked with data like number of foundations / wall / road completed. Kindly suggest if you can provide it.

  • @arunrbishwakarma7443
    @arunrbishwakarma7443 2 роки тому

    Can you make lisp command for me i am help less in internet please help me

  • @rabindra362
    @rabindra362 6 років тому

    How to get road x section software. PLZ send details. Sir

  • @Chris.O.J
    @Chris.O.J Рік тому

    Can you just copy and paste the code?

  • @afnanassociate5083
    @afnanassociate5083 6 років тому

    Please create a lisp for road cross section

  • @utkarshbandgar6744
    @utkarshbandgar6744 Рік тому

    Dear Sir, I want to learn LISPing. Please provide your details to contact .

  • @abubakarmalek6289
    @abubakarmalek6289 4 роки тому

    THANKS I WANT TO LEARN

  • @matthewhathaway6648
    @matthewhathaway6648 5 років тому +1

    What happens if i cant open the LISP editor?
    I receive an error,
    "Cannot invoke (command) from *error* without prior call to (*push-error-using-command*).
    Converting (command) calls to (command-s) is recommended."
    Please advise?

  • @rajshdeb3071
    @rajshdeb3071 4 роки тому

    please show railway curve lips file

  • @rahulsurveyor
    @rahulsurveyor 2 роки тому

    please help
    the following programme not run
    ;cord-ldr.lsp
    ; x,y Coordinates on Leader Lines
    (defun C:CR (/ PNT1 P1X P1Y STDY DY COORD PTXT)
    (setq PNT1 (getpoint
    "
    Pick coordinate point: "))
    (setq P1X (car pnt1)) ;x coord
    (setq P1Y (cadr pnt1)) ;y coord
    (setq STDX (rtos(/(nth (P1X 1000) 2 3)))
    (setq STDY (rtos(/(nth (P1Y 1000) 2 3)))
    (setq COORD (strcat "E" STDX)
    COORD1(strcat "N" STDY))
    (setq PTXT (getpoint PNT1
    "
    Pick text location: "))
    (command "LEADER" PNT1 PTXT ""
    COORD COORD1 "" "")
    (princ)) ; end
    (ALERT "IT WILL PRINT THE X,Y CO-ORDINATES OF A POINT..., C:CR")