i have cad file with almost 22k points and i need make circles with the same diameter (30mm) around all of of them, but making it manually will took so long.is there some better way? Some autocad addon od macro? Thanks for any help
Asked
Active
Viewed 56 times
0
-
In the old days, Autocad had its own script language call Autolisp. Don't know if still in use in new versions. You can search that – ericpap Jan 16 '15 at 20:53
1 Answers
0
If the points are standard point entities, it wouldn't be too difficult to create a selection set of all points in the file and then add a sphere/circle/block entity at each point. AutoLisp or .Net would handle this very easily.

Miiir
- 731
- 1
- 9
- 12
-
They are all selectable but how could i add block entity to all of them with lisp? Or can it be added manually after selected all points? – user3355244 Jan 16 '15 at 21:56
-
Without coding something specifically for you, check out this link: http://forums.autodesk.com/t5/autocad-map-3d-general/lisp-routine-to-insert-blocks-at-point-locations/td-p/627958 – Miiir Jan 17 '15 at 03:03