본문 바로가기
반응형

visual lisp4

Count Layers 역시 AI 가 코딩이라니... 대단합니다. Lisp 도사분들이 많아 웬만하면 거의 다 개발되어 있는데...없으면 만들어 주기까지 하는 군요. google AI 대단하닷... 🔎 count layers in acad by lisp: Google 검색 www.google.com (vl-load-com) ; Ensure ActiveX functions are available(defun c:CountLayers ( / doc count) (setq doc (vla-get-ActiveDocument (vlax-get-acad-object))) ; Get the active document (setq count (vla-get-Count (vla-get-Layers doc))) ; Get the count.. 2025. 10. 1.
선택한 폴리선 면적 구하기 Lisp to calculate area of all closed polylines selectedHi there Autocadders world wide as well as Autodesk employees Can someone give me a lisp that calculates the area of all closed polylines selected, (in one operation) The area add command is okay, except if you have over a hundred closed polylines whoseforums.autodesk.com (vla-get-area x) 2025. 8. 20.
선택 세트 가져오기.Visual LISP Help help.autodesk.com (vl-load-com)(defun c:Example_ActiveSelectionSet() (setq acadObj (vlax-get-acad-object)) (setq doc (vla-get-ActiveDocument acadObj)) ;; The following example returns the current selection set from the current drawing (setq sset (vla-get-ActiveSelectionSet doc))) (setq ss (vla-get-ActiveSelectionSet (vla-get-ActiveDocument .. 2025. 8. 20.
현재 날짜 추출 > 폴더이름으로 저장 Visual Lisp Methods ReferenceVisual Lisp Methods Reference Back to the Tutorials A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A big thank you to the following people for help in compiling this reference : Stig Madsen; Randall Rath; David Stein, Jonathan Trostat, Namibian Brewww.afralisp.net (setq cd (rtos (getvar "cdate") 2 0));;#1 Saving current dwg(defun c:al-Save () (vl-load-com) (se.. 2025. 8. 7.
반응형