Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
(defun c:3dg ( / a)
(setq clay (getvar "clayer"))
;THE LOOP MUST START HERE
(command "layer" "set" "Hulplijnen" nil)
(command "_.PLINE")
(while (= (getvar "CMDNAMES") "PLINE")
(command pause)
);end while
(initget 7)
(setq a (getdist "\nVoer hoogte dakvlak in : "))
(COMMAND "_extrude" (entlast) "" a)
(command "chprop" (entlast) "" "LA" "Dakplan" "")
;THE LOOP MUST END HERE
(command ".-Layout" "T" "F:/Projecten/Autocad/Tekeningen/Standaardtekening 2008.dwg" "2007.001-01.01")
(command ".-Layout" "R" "Layout1-2007.001-01.01" "Gevelaanzicht")
(command ".-Layout" "S" "Gevelaanzicht")
(command "_.MSPACE")
(command "zoom" "extents")
(setvar "perspective" 1)
(command "_vscurrent")(command "_C")
(command "._3dorbit")
(setvar "clayer" clay)
(princ)
);end defun