I use this
(defun c:ds () (command "dimscale") (princ))
Type: Posts; User: paulmcz
I use this
(defun c:ds () (command "dimscale") (princ))
Here is the code explanation:
(defun c:dx (/ a as b bs c d dv dvs u)
;(while ; uncomment if needed, repeats dx function until pressing enter on "Start point" prompt
(setq a (getpoint "\n...
Well, this is very low-tech solution. I thought the code is so primitive, it wouldn't need any explanation. What specific part of the code you need help with?
This also works. Take a look.
(defun c:dx (/ a as b bs c d dv dvs u)
;(while
(setq a (getpoint "\n Start point: "))
(setq b (getpoint a "\n Endpoint: ")
d (distance a b)
...
Try this
(defun c:add (/ cval cval1 index l ss strend val)
(setq ss (ssget '(( 0 . "text")))
l (sslength ss)
index 0
val 0)
(repeat l
(setq strend (cdr(assoc 1...
Here you go, 3 decimals.
This is not my computer. I don't know the history of the OS installation.
The graphic card driver has been updated to AMD Catalyst 12.4, sometime in the spring.
Thanks JD. It is a desktop comp. with an on-board ATI Radeon HD 4250 card on Windows 7 Ultimate, 32 bits, 4GB RAM. I'll find out tomorrow about the graphic card driver.
I was thinking that it was...
This happens after the Realistic shading of the 3D solid is rotated several times, using 3Dorbit command, in AutoCAD 2013. It never happened with previous (2011) version. Does anyone have an idea...
This helped me:
Open the dialog, arrange the sorting in the order you want and then
press CTRL and click the little 'x' in the top right of the window.
Type: DRAGMODE then ENTER then A then ENTER
OK, I see it now. It does show 7 outside radius when you look closely. My solution and everything I suggested was meant for 5 outside radius of the pipe as well as the radius of the fillet. The...
Try to set dragmode to AUTO
This is what I mean by sphere:
Outside radius of 7 on a pipe that has outside radius 5? I am trying to imagine how it should look like. To me, the only correct solution to this is that a sphere of a radius of 5 is where the 2...
Revolved radius smaller and larger than 5, if we want the inner half-pipe intact:
JD, step 3 is a solution for this problem only. It is a shortcut for this particular case. Revolving the profile in the case like this will work as well but it is limited to radius 5 too. Just...
Here you go.
(cond ((= (getvar "dwgname") "c101")(c:TB1))
((= (getvar "dwgname") "c102")(c:TB2))
((= (getvar "dwgname") "c103")(c:TB3))
)
I'd use "cond" for this.
Another way: