Turning on and freezing
Turning on and freezing
(OP)
I am just curious...
What is the difference between the two possibilities?
A part the fact you can not freeze but you can turn off the current layer, of course....
What is the difference between the two possibilities?
A part the fact you can not freeze but you can turn off the current layer, of course....





RE: Turning on and freezing
When it is frozen it isn't. Can help performance in large drawings.
RE: Turning on and freezing
A block is created using layers CAT, DOG, and PUDDING and is inserted on current layer PEANUTBUTTER.
Results:
If you turn OFF PEANUTBUTTER, the block is still visible
If you turn OFF or FREEZE CAT, the remaining elements are still visible (The same is true for DOG and PUDDING)
If you FREEZE PEANUTBUTTER, the block disappears regardless of the settings for layers CAT, DOG, or PUDDING.
RE: Turning on and freezing
******************
Just fer fun:
(defun C:LO ()
(command "-layer" "on" "*" ""))
(defun C:LF ()
(command "-ayer" "off" "*" ""));;leaves current layer on
(defun c:LFX () (command "-layer" "off" "*|*" ""))
(defun c:LOX () (command "-layer" "on" "*|*" ""))
(defun c:LOXx () (command "-layer" "on" "~*|*" ""))