Groupcode for an XClip...or How to access it?

Discussion in 'AutoCAD' started by Steven D. Papke, Jul 21, 2003.

  1. Anyone know the dotted pair for this function or how its handled for
    manipulation?
     
    Steven D. Papke, Jul 21, 2003
    #1
  2. Steven D. Papke

    mataeux Guest

    see the SPATIAL_FILTER object in the DXF reference
    good luck,
    if you are working with clip boundaries that aren't normal to the blocks you
    might notice unexpected results.
    you have to correct for AutoCAD errors that cause the clip boundary to not
    show up it the right place if you generate polyline from spatial filter, the
    xclip command doesn't even do it correctly.

    (defun get_spatial_filter(ename / return)
    (and(setq return(cdr(assoc 360(entget ename))))
    (setq return(dictsearch return "ACAD_FILTER"))
    (setq return(dictsearch(cdr(assoc -1 return))"SPATIAL"))
    )
    return
    )
     
    mataeux, Jul 21, 2003
    #2
  3. Thanks Mataeux.
     
    Steven D. Papke, Jul 21, 2003
    #3
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.