(defun c:ACT04C ()
(command "UNITS" 2) ; Set units to feet
;; Outer Polyline
(command "PLINE"
'(0 0)
'(8.25 0)
'(8.25 2.9)
'(0 2.9)
"C") ; Close polyline
;; Rectangles (example dimensions and positions, adjust as needed)
(command "LINE" '(0.75 0.75) '(2 0.75))
(command "LINE" '(2 0.75) '(2 1.25))
(command "LINE" '(2 1.25) '(0.75 1.25))
(command "LINE" '(0.75 1.25) '(0.75 0.75))
;; Circles
(command "CIRCLE" '(2 2) 1.25)
(command "CIRCLE" '(6.25 1.25) 1.0)
;; Arcs
(command "ARC" '(4 1.25) '(4.6 1.85) '(5.2 1.25)) ; Sample arc, adjust
coordinates as needed
(princ "\nDrawing complete. File: NAME_ACT04C")
)