• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    AutoCAD 2004/2005/2006 DWG Format

    Reply
    Active Contributor
    Posts: 33
    Registered: ‎10-14-2004

    3d coordinates of node

    145 Views, 5 Replies
    02-28-2006 12:44 PM
    I know that we can extract coordinates when we have a block in Autocad.

    My question is how do we extract those coordinates when we only have nodes or points.
    Thank you
    Please use plain text.
    Distinguished Contributor
    Posts: 551
    Registered: ‎07-12-2005

    Re: 3d coordinates of node

    02-28-2006 01:18 PM in reply to: louise3d
    Not sure if this is what you are after but ID, enter, pick point.
    Please use plain text.
    Active Contributor
    Posts: 33
    Registered: ‎10-14-2004

    Re: 3d coordinates of node

    02-28-2006 01:29 PM in reply to: louise3d
    No This is not what I am looking for.
    I want to extract my coordinates into an ASCII file or Excell file just like when we do it with a block when we do extract attribute.
    Please use plain text.
    Distinguished Contributor
    Posts: 4,414
    Registered: ‎03-01-2004

    Re: 3d coordinates of node

    02-28-2006 01:34 PM in reply to: louise3d
    Search this forum for more info on extracting coordinates. I recall some discussion a few months back on this and possibly even a lsp routine that worked.
    Please use plain text.
    *Allen Jessup

    Re: 3d coordinates of node

    02-28-2006 01:42 PM in reply to: louise3d
    About the best you can do in vanilla autocad is list the points. Then
    copy/paste from the text window to a text editor. Then you will have to edit
    out the extra data.

    Try asking in the customization group or searching the internet. It
    shouldn't be too difficult to write a lisp routine to do this.

    Allen

    The following will replace all points on layer work with a block named pnt.

    (defun C:smileytongue:2B ()
    (setq ARQ (getvar "ATTREQ"))
    (setvar "ATTREQ" 0)
    (setq count 0
    SST (ssget "X" '((0 . "POINT")(8 . "WORK")))
    )
    (while (< count (sslength SST))
    (setq ENT (entget (ssname SST count)))
    (setq INSP (cdr (assoc 10 ENT)))
    (command "-insert" "pnt" insp "" "" "")
    (setq count (1+ count))
    )
    (setvar "ATTREQ" ARQ)
    )
    !

    wrote in message news:5098250@discussion.autodesk.com...
    No This is not what I am looking for.
    I want to extract my coordinates into an ASCII file or Excell file just like
    when we do it with a block when we do extract attribute.
    Please use plain text.
    New Member
    ysiewing
    Posts: 1
    Registered: ‎01-31-2012

    Re: 3d coordinates of node

    03-02-2012 12:45 AM in reply to: *Allen Jessup

    What if the model is 3Dmodel and i want to extract the data result from the nodes at the middle of the part thickness?

    In 3D model, normally there are 6 layers in meshing. However, in the results, it is very difficult to identify which node is at the middle of the layer.

    Anyone can help?

     

    Thanks

    Please use plain text.