Nikon Posted 21 hours ago Posted 21 hours ago (edited) Hello everyone. You need to select several sizes and align the extension lines to the short line of each selected size. Maybe there is such a program? Edited 20 hours ago by Nikon Quote
GLAVCVS Posted 5 hours ago Posted 5 hours ago (edited) I don't think we've understood your question yet (at least I haven't). You might need to elaborate a bit and add some more images. Edited 5 hours ago by GLAVCVS Quote
mhupp Posted 3 hours ago Posted 3 hours ago I'm guessing they have a drawing and want all the long blue dim extension lines to be shortened to where the dimension is. but the top blue one looks like its pulling from the right and left like the dimension itself is inside the feature its measuring. were the bottom red is only pulling from the right. Quote
Nikon Posted 3 hours ago Author Posted 3 hours ago (edited) 3 hours ago, GLAVCVS said: I don't think we've understood your question yet (at least I haven't). You might need to elaborate a bit and add some more images. Sometimes the extension lines of associative dimensions are stretched (for example, to the origin of coordinates ) when inserted into another drawing. Now I've found a way to disable dimensions associativity, but I don't really like it. I only find out that the dimensions have lost their connection with the object when I insert them into another drawing (or turn on the annotation monitor). So I thought it would be possible to align the extension lines to a smaller extension line. Maybe there is a better way... ; disable associativity of only selected dimensions (defun c:DimAssOf ( / ss) (vl-load-com) (prompt "\nSelect DIMENSION to disable associativity: ") (setq ss (ssget '((0 . "DIMENSION")))) (if ss (progn (command "_.DIMDISASSOCIATE" ss "") (prompt (strcat "\nDone: associativity is disabled for " (itoa (sslength ss)) " dimensions." ) ) ) ) (princ) ) extension lines.dwg Edited 1 hour ago by Nikon Quote
Nikon Posted 1 hour ago Author Posted 1 hour ago 1 hour ago, mhupp said: I'm guessing they have a drawing and want all the long blue dim extension lines to be shortened to where the dimension is. but the top blue one looks like its pulling from the right and left like the dimension itself is inside the feature its measuring. were the bottom red is only pulling from the right The blue dimension should become the same as the red one. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.