CS Area Canal
CS Area Canal
(defun Cut_layer()
(if
(eq (tblsearch "layer" "CUT") nil)
(command "layer" "n" "CUT" "c" "50" "CUT" "s" "CUT" "")
)
);defun
(defun Fill_layer()
(if
(eq (tblsearch "layer" "FILL") nil)
(command "layer" "n" "FILL" "c" "10" "FILL" "s" "FILL" "")
)
);defun
(defun Chainage_layer()
(if
(eq (tblsearch "layer" "Chainage") nil)
(command "layer" "n" "Chainage" "c" "3" "Chainage" "s" "Chainage" "")
)
);defun