Search:

Type: Posts; User: paulmcz

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. I use this (defun c:ds () (command "dimscale")...

    I use this

    (defun c:ds () (command "dimscale") (princ))
  2. Here is the code explanation: (defun c:dx (/...

    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...
  3. Well, this is very low-tech solution. I thought...

    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?
  4. This also works. Take a look. (defun c:dx (/...

    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)
    ...
  5. Replies
    6
    Views
    315

    Try this (defun c:add (/ cval cval1 index l...

    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...
  6. Replies
    18
    Views
    8,844

    Here you go, 3 decimals.

    Here you go, 3 decimals.
  7. Replies
    4
    Views
    291

    This is not my computer. I don't know the history...

    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.
  8. Replies
    4
    Views
    291

    Thanks JD. It is a desktop comp. with an on-board...

    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...
  9. Replies
    4
    Views
    291

    shading problem

    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...
  10. Thread: File order

    by paulmcz
    Replies
    4
    Views
    270

    This helped me: Open the dialog, arrange the...

    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.
  11. Type: DRAGMODE then ENTER then A then ENTER

    Type: DRAGMODE then ENTER then A then ENTER
  12. Replies
    46
    Views
    1,702

    OK, I see it now. It does show 7 outside radius...

    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...
  13. Try to set dragmode to AUTO

    Try to set dragmode to AUTO
  14. Replies
    46
    Views
    1,702

    This is what I mean by sphere:

    This is what I mean by sphere:
  15. Replies
    46
    Views
    1,702

    Outside radius of 7 on a pipe that has outside...

    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...
  16. Replies
    46
    Views
    1,702

    Revolved radius smaller and larger than 5, if we...

    Revolved radius smaller and larger than 5, if we want the inner half-pipe intact:
  17. Replies
    46
    Views
    1,702

    JD, step 3 is a solution for this problem only....

    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...
  18. Replies
    46
    Views
    1,702

    Here you go.

    Here you go.
  19. (cond ((= (getvar "dwgname") "c101")(c:TB1)) ...

    (cond ((= (getvar "dwgname") "c101")(c:TB1))
    ((= (getvar "dwgname") "c102")(c:TB2))
    ((= (getvar "dwgname") "c103")(c:TB3))
    )

    I'd use "cond" for this.
  20. Replies
    46
    Views
    1,702

    Another way:

    Another way:
Results 1 to 20 of 95
Page 1 of 5 1 2 3 4