Search:

Type: Posts; User: GP_

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    116

    You're welcome. :)

    You're welcome. :)
  2. Replies
    3
    Views
    116

    Try. :) (defun c:test ( / a b ) ...

    Try. :)



    (defun c:test ( / a b )
    (setq a (vlax-ename->vla-object (car (entsel "Select Leader"))))
    (setq b (getstring "\nUser Arrow: "))
    (vla-put-ArrowheadBlock a b)
    )
  3. Replies
    12
    Views
    489

    To be completed with the error handling....

    To be completed with the error handling.
    Naturally it works with straight leader line.
    The real challenge would be to connect a reactor (for the wipeout) to mleader, but it is a work for guru, not...
  4. Replies
    12
    Views
    489

    I mean, maybe you do not need to cut all the...

    I mean, maybe you do not need to cut all the objects if you just cover them with a wipeout.
    Remember to set Frames = Off

    41539



    (defun c:demo (/ s s1 ss space pntlst w pntlst zv TempL...
  5. Replies
    12
    Views
    489

    DWG unfortunate... with a wipeout would not be...

    DWG unfortunate... with a wipeout would not be mutilated.
  6. Thread: Slice

    by GP_
    Replies
    26
    Views
    787

    A picture taken with a cell phone?!?

    A picture taken with a cell phone?!?
  7. Replies
    5
    Views
    232

    You're welcome, motee-z. Consider LOFT...

    You're welcome, motee-z.

    Consider LOFT command, creates a surface (not mesh) with boundaries that follow exactly the cross sections and it is not necessary to draw the lines for closing.

    ...
  8. Replies
    5
    Views
    232

    Connect the ends with a line and then EDGESURF. ...

    Connect the ends with a line and then EDGESURF.

    http://exchange.autodesk.com/autocad/enu/online-help/browse#WS1a9193826455f5ffa23ce210c4a30acaf-4b88.htm
  9. Replies
    4
    Views
    173

    Try (cons 1 (strcat "Text1 " var " Text2"))

    Try

    (cons 1 (strcat "Text1 " var " Text2"))
  10. Replies
    16
    Views
    587

    enjoy... :) http://www.lee-mac.com/steal.html

    enjoy... :)

    http://www.lee-mac.com/steal.html
  11. Thread: Hatch Using LISP

    by GP_
    Replies
    8
    Views
    514

    To use boundary command must be the geometry that...

    To use boundary command must be the geometry that is used is entirely displayed on the screen.





    then... how can?
  12. Replies
    8
    Views
    330

    I posted an example from the command line: ...

    I posted an example from the command line:






    In lisp, simpler:
  13. Replies
    8
    Views
    330

    (defun c:clr (/ A B C COUNT...............

    (defun c:clr (/ A B C COUNT............
    .............
    .............
    .............
    (setq X C) ;Sends the selection set to the current commad
    .............
    .............


    (i.e.)
  14. Thread: Hatch Using LISP

    by GP_
    Replies
    8
    Views
    514

    Happy to help. :)

    Happy to help. :)
  15. Thread: Hatch Using LISP

    by GP_
    Replies
    8
    Views
    514

    Maybe... draw (red) polyline insert...

    Maybe...


    draw (red) polyline

    insert block

    vla-getboundingbox (polyline+block)

    zoom -> BoundingBox
  16. (defun C:test() (setq pt1 (getpoint)) (setq...

    (defun C:test()
    (setq pt1 (getpoint))
    (setq pt2 (getpoint))
    (command "Line" pt1 pt2 "")

    );end defun
  17. Replies
    8
    Views
    318

    You have certainly done something wrong. ...

    You have certainly done something wrong.







    (if (= fuel "a")
    (progn
  18. Replies
    4
    Views
    319

    Can you post a dwg or jpg with the surface?

    Can you post a dwg or jpg with the surface?
  19. Replies
    12
    Views
    313

    I sent to you a request for access, but I have...

    I sent to you a request for access, but I have not received a reply.

    40629
  20. Another method, if they are 3Dfaces: EXTRUDE...

    Another method, if they are 3Dfaces:

    EXTRUDE with direction (or path, I can not remember in 2002)
    UNION
    SLICE
Results 1 to 20 of 100
Page 1 of 5 1 2 3 4