Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/25/2025 in all areas

  1. Hi everyone, I'm trying to make a Lisp routine to standardize layer properties in my drawings. I'm not very experienced with Lisp programming (though I've used AI to help), I've included my current code below. I'd be very grateful for any advice or suggestions you could offer. Thank you so much for your time! Here’s what I’m trying to do: The routine should go through all the layers in the...
    1 point
  2. Here is the little modification that was missing: you already have the functionality But you should simplify the code a bit. One test you could do is to obtain the triangles using minimum circles to compare the differences. Do your tests (defun SX:M3DFACEF3DPL (/ enameOne enameSecond old_layer layerNameBase dataOne ptOne ptlistOne dataSecond ptSecond ptlistSecond len i j pt1 pt2 ...
    1 point
  3. Hi, Written a tool for replacing (updating) blocks. Had some spare time untill my boss recently used the W-word again (work , yak!) Anywayz , its a prototype so I'm not sure its stable and safe yet because I only did some lab testing. I hope it will be usefull. Not sure if I will be able to work on it further any time soon because I still have a few ideas and wishes. gr. Rlx RlxBlk manual.doc ...
    1 point
  4. if layer's are locked maybe not. and looks like 6 pomoc 01 is also frozen in your example so that's also might be why your lisp isn't working. I try to avoid using command in lisp when you can. idk if ZWCAD can use visual lisp (defun C:dellayers76_only6 (dellay "6") (princ)) (defun dellay (str / doc lst lay del) (vl-load-com) (setq check (getvar "CLAYER")) (while (or (wcmatch check...
    1 point
  5. Hello, esteemed colleagues, I am currently navigating the complexities of Visual LISP programming within AutoCAD with the aim to enhance my project's efficiency and customization. My endeavor involves crafting a generic code capable of altering existing layer properties. The focal point of this initiative is to enable the adjustment of layer attributes such as color (specifically to True...
    1 point
×
×
  • Create New...