Author Topic: regen???  (Read 6514 times)

0 Members and 1 Guest are viewing this topic.

ELOQUINTET

  • Guest
regen???
« on: December 08, 2003, 01:55:58 PM »
hey i'm workin on this guys drawings and always have regen problems when opening, switching layouts, printing, etc. etc. i think it has to do with the fact that he uses excessive viewports. i purged the drawings and they seem pretty clean. in options/system  i set it to regen when switching layouts. is there anything else i can do to speed things up. strangle the guy is not an option as we've already fired him  :lol:

dan

Craig

  • Guest
regen???
« Reply #1 on: December 08, 2003, 02:15:04 PM »
Hunt him down, like the dog he is and shoot him so he doesn't come to work with me!

ELOQUINTET

  • Guest
regen???
« Reply #2 on: December 08, 2003, 02:50:25 PM »
not that i subscribe to stereotypes but he was polish and as for him moving to alabama, very unlikely so you're safe well kinda, you do live in alabama. not that i subscribe to stereotypes  :wink:

dan

Craig

  • Guest
regen???
« Reply #3 on: December 08, 2003, 02:55:24 PM »
Quote from: eloquintet
not that i subscribe to stereotypes but he was polish and as for him moving to alabama, very unlikely so you're safe well kinda, you do live in alabama. not that i subscribe to stereotypes  :wink:

dan


hahahahahaha.........hey!

ELOQUINTET

  • Guest
regen???
« Reply #4 on: December 08, 2003, 03:04:56 PM »
uh hey maybe i should've used an encryption algorithim... copy paste

dan

Craig

  • Guest
regen???
« Reply #5 on: December 08, 2003, 03:13:44 PM »
You know what bothers me is when I'm trying to help someone thats used a computer for more than 2 years and when I say "I want you to highlight and copy the selection and paste it there" and they reply back with "How do i copy and paste?"

ELOQUINTET

  • Guest
regen???
« Reply #6 on: December 08, 2003, 03:16:56 PM »
worthy of a bitch slap  :lol:  :lol:  :lol:

SMadsen

  • Guest
regen???
« Reply #7 on: December 08, 2003, 04:03:29 PM »
It probably won't speed things up but REGENALL can be nice when dealing with multiple viewports

hyposmurf

  • Guest
regen???
« Reply #8 on: December 08, 2003, 05:31:15 PM »
Another option rather than using the REGEN command,to refresh the drawing on the screen, is to delete the objects on the screen that require regenerating and then select Undo. Objects that are recovered from AutoCAD's database are refreshed as they're placed back on the screen. This will take less time than full a regen.Have you also looked the REGENMODE system variable?It will eitherb turn REGENAUTO on or off.

Hangman

  • Guest
Regen ... ing
« Reply #9 on: December 10, 2003, 03:02:58 PM »
I have a small lisp that regens only what you pick and not the whole drawing.  If your interested and it'll work for you.?.

t-bear

  • Guest
regen???
« Reply #10 on: December 10, 2003, 04:31:49 PM »
Hangman....
Does it work with 3D objects?  I'd be curious to see it.

Hangman

  • Guest
Partial Regen ...
« Reply #11 on: December 10, 2003, 04:55:08 PM »
Here's the code you requested    :wink:

Code: [Select]

;This allows partial regens of individual entities
(defun c:RE (/ count entity set set_length)
   (prompt "\nSelect entitie(s) to regenerate: ")
   (setq set (ssget))
   (setq set_length (sslength set))
   (setq count 0)
   (while (< count set_length)
      (setq entity (ssname set count))
      (entupd entity)
      (setq count (1+ count))
   )
 (princ)
)

t-bear

  • Guest
regen???
« Reply #12 on: December 10, 2003, 05:26:28 PM »
Thanks Hangman....
Will play with it tomorrow...headed out-o-here!