How to execute a set of statements repeatedly in AutoLISP

Sdílet
Vložit
  • čas přidán 2. 04. 2020
  • In this session you will learn to process multiple objects using While Loop in AutoLISP with an example program.
  • Věda a technologie

Komentáře • 34

  • @krzysztofm1999
    @krzysztofm1999 Před 3 lety

    Thank you for sharing your knowledge. Your channel is great.

  • @jrmusa1
    @jrmusa1 Před 4 lety

    great videos! Thank you.

  • @georgekhaba6436
    @georgekhaba6436 Před 2 lety

    @0:53 whileloop example
    @11:08 a program to insert incremental numbers using whileloop function

  • @emilianorivera9168
    @emilianorivera9168 Před 2 lety

    Thanks for sharing....its a great channel!

  • @amnoorulaman
    @amnoorulaman Před 4 lety

    Thanks a lot...

  • @sadamth6714
    @sadamth6714 Před 2 lety

    Great 👌👌👌

  • @bipinmsit7380
    @bipinmsit7380 Před 4 lety

    How to place incremental text along a line/curve with regular interval?

  • @sachinrathod7922
    @sachinrathod7922 Před 2 lety

    Thank you so much sir,
    How to use the if progn condition in while loop.
    Please Make videos on this too.

  • @raghulshangarthiyan9793

    Any lisp is available for beam L/s

  • @mohammadahmed7932
    @mohammadahmed7932 Před 3 lety

    Could u guide me how can i filter polylines having length from 0.5 units to 1 units,and increase 0.5 units repeatedly and same if i want to filter polyline having area from 0.5 sq units to 1 sq units,and increase 0.5 sq units repeatedly.thanks

  • @Entertainment-Jeddah
    @Entertainment-Jeddah Před 3 lety

    Nice bro

  • @riaritz1429
    @riaritz1429 Před 2 lety

    Can you please post the program in description box please ? for all if possible

  • @emmanuelpaniagua8983
    @emmanuelpaniagua8983 Před 4 lety

    Thanks soo much! can you do some more examples with "entmake" i can not find much information about it and it seems to be quite usefull.

  • @JP-ts2ek
    @JP-ts2ek Před rokem

    Can you create a video showing how to do a 3D object like a cube using AutoLISP?

  • @MesutAkcan
    @MesutAkcan Před 3 lety

    Thanks for sharing. is there source code(text)

  • @devarajan6366
    @devarajan6366 Před 3 lety

    In the same incremental concept is it possible to implement alphabets ?? Could you please tell us

    • @cyberCADsolutions
      @cyberCADsolutions  Před 3 lety

      Yes. Use ASCII codes in the while loop condition and text generation code.

  • @vijaysknowledge.
    @vijaysknowledge. Před 3 lety

    Nice bro;how can we get the incremental value with multi leader.

    • @carloscalderong1000
      @carloscalderong1000 Před 2 lety

      Regards
      Maybe a bit late, but since you didn't get an answer, here's an alternative.
      (defun c:test ()
      (setq n (getint "
      Enter Star Value:"))
      (while
      (setq p (getpoint "
      Enter Pick Point:"))
      (vl-cmdf "MLEADER" p pause (strcat (itoa n)))
      (setq n (1+ n))
      )
      )

  • @ifty_arain
    @ifty_arain Před měsícem

    How to did you get AutoCAD Text Window?

  • @mesuttasar21
    @mesuttasar21 Před 2 měsíci

    Hi dear, what is the diffrence between rtos and itoa? Instead of itoa can't we use rtos? Thanks...

    • @ifty_arain
      @ifty_arain Před měsícem

      rtos: to change real number(e.g 12.5, 11.35) into string. itoa: to change integer number ( 12,11 etc) into alphabet

    • @cyberCADsolutions
      @cyberCADsolutions  Před měsícem

      Rtos is used to convert a real number to string. Itoa is to convert an integer to string.