Jump to content

Leaderboard

Popular Content

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

  1. @GLAVCVS gracias, now the number of circles is counted only inside the contour.
    1 point
  2. If you want someone to take a look at your file you should upload it here in the forum. Some people have restrictions at their workplace so they can't visit certain sites or download files, and speaking for myself, I don't like clicking on links to external sites. If you're not sure how to upload a file, take a look at this post:
    1 point
  3. (defun c:Circles_Chess_outl (/ oddp ent step radius vlist minx miny maxx maxy x y row pt osmant circulos creaMTEXT ) ;;----------------------------------------------- ;; THE FUNCTION OF CHECKING WHETHER THE NUMBER IS ODD ;;----------------------------------------------- (defun oddp (n) (= (logand (fix n) 1) 1) ) ;;----------------------------------------------- ;; Local auxiliary functions ...
    1 point
  4. As for what you say about AutoCAD 2015, it seems strange to me. Although I have heard somewhere that this version of AutoCAD does strange things.
    1 point
  5. It's easy To not complicate the code further, simply add the code highlighted in blue in the image, in the same position as shown
    1 point
  6. As for '(*radius 10.0)', you should put a space between '*' and 'radius': '(* radius 10.0)'
    1 point
  7. I don't understand why you changed the selection mode. The mode should be '_cp', not '_wp' In the last code I attached it is as it should be. Don't touch it
    1 point
  8. In the last code I have attached last time are the 2 updated commands. Copy them again and test them to make sure what you tell me. In 'WP-count' the selection mode is updated and works correctly. If you want to customize the text content you will have to modify the parameter '(itoa (sslenght conj))' of the function '(vla-AddText...) ' As for the pattern, so that the distribution of the...
    1 point
  9. The way I make custom dcl's is that I use say Multi getvals to make a dcl file, I change the code. (setq fo (open (setq fname (vl-filename-mktemp "" "" ".dcl")) "w")) (setq fo (open (setq fname "D"\\acadtemp\\dcltest.dcl") "w")) Then I can see the dcl code I would then add a new row which would be Radio buttons for the "Hor" or "Ver" as choices. Lastly I use a lisp by rlx to convert the...
    1 point
  10. That's it. Now it works. The code should work in AutoCAD 2015. I've tested it and it works. ACD2015.mp4
    1 point
  11. Wait I don't know what's going on I edited the code but the website hasn't updated it again I'll try again.
    1 point
  12. I just updated the code with the necessary changes. Please check if everything is working properly
    1 point
  13. Can you post what you have so far? There is also Taper Faces and Rotate Faces that come in handy. What type of 3D design are you doing? Cad64 is experienced in a good deal of 3D applications and has a very good YouTube page. I learned most of my techniques for 3D by trial and error and watching videos and reading tutorials once the internet was useful in those endeavors to refine and...
    1 point
  14. In the bottom right corner of AutoCAD, click on the upside down triangle. Check that there is a tick next to Paper/Model. If there is not, then select it. Now at the bottom of your screen, where ORTHO, OSNAP, etc is there will be a button which will say PAPER or MODEL depending on if you are in paperspace or modelspace/viewport. If you are in a viewport and it says model, then just click...
    1 point
×
×
  • Create New...