Erase all objects on my path line.

Erase all objects on my path line.

Anonymous
Not applicable
2,320 Views
7 Replies
Message 1 of 8

Erase all objects on my path line.

Anonymous
Not applicable

How to erase all objects on my path line ?

0 Likes
2,321 Views
7 Replies
Replies (7)
Message 2 of 8

jayhar
Advisor
Advisor

Hi,

Watch this Video https://autode.sk/2APf8sA

 

Is it Array, you can delete hold Ctrl key + select object > Erase

 

 

Please Mark the Post or Posts as Solution(s) to help others find the answer quickly. If your issue persists,

Please give me a bit more detail on this issue so we can continue to work towards getting this solved.

AutoCAD Certified Professional

Thanks You
Jayhar.M.J

 

Helpful Links: Prepare your computer for download |  Autodesk Virtual Agent | Clean Uninstall | Steps for Setting-Up Student Software

Please Subscribe YouTube Channel
https://www.youtube.com/channel/UCclj8v9vHQiFa8_DriuAk3w

Please Mark the Post or Posts as Solution(s) to help others find the answer quickly.
0 Likes
Message 3 of 8

ВeekeeCZ
Consultant
Consultant

Here is a routine that allows you to select objects inside the existing polyline (crossing or window polygon type of selection) or laying on the polyline (fence type), which you need in this case.

 

(vl-load-com)

(defun c:SelectInside (/ en ss lst ssall tmp head) 	;;Select Inside of contour
  						;;!!!! REQUIRED EXPRESS TOOLS

  (if (and (setq en (car (entsel "\nSelect contour: ")))
           (wcmatch (cdr (assoc 0 (entget en))) "*POLYLINE")
           (or *si-typ*
               (initget "Wp Cp F")
               (setq *si-typ* (getkword "\nSpecify selection typ polygon [Window/Crossing/Fence]: ")))
      )
    (progn
      (setq lst (ACET-GEOM-OBJECT-POINT-LIST en 1e-3)
            lst (mapcar '(lambda (x) (list (car x) (cadr x))) lst))
      (while lst
        (setq head (car lst)
              tmp  (cons head tmp)
              lst  (vl-remove-if
                     '(lambda (pt) (equal pt head 1e-6))
                     (cdr lst))))
      (setq lst (reverse tmp))
      (ACET-SS-ZOOM-EXTENTS (ACET-LIST-TO-SS (list en)))
      (command "_.Zoom" "0.95x")
      (if (setq ss (ssget (strcat "_" *si-typ*) lst))   ;or WP vs CP
        (sssetfirst ss ss))))
  (princ)
)

(defun c:SelectInsideReset nil (setq *si-typ* nil) (c:SelectInside) (princ))  ; 

 

In case you don't know how to work with LISP routines, look HERE

0 Likes
Message 4 of 8

Anonymous
Not applicable

How to delete all objects connected on path line ?

kindly see attachment for reference.

0 Likes
Message 5 of 8

jggerth
Advisor
Advisor

Erase command, Fence option.  will select and erase all objects that touch the Fence line as you draw it.

Message 6 of 8

Anonymous
Not applicable

Hello..

How to use fence command ?

Kindly share a sample video.

 

0 Likes
Message 7 of 8

jayhar
Advisor
Advisor

<<<<<< How to use fence command ?

              Kindly share a sample video.>>>>>>

 

How to use fence command, Video is here Click here https://autode.sk/2AX5rYY

Command: E
ERASE
Fence Lasso – Press Space bar to cycle options ___ found Command Erase

 

 

Please Mark the Post or Posts as Solution(s) to help others find the answer quickly. If your issue persists,

Please give me a bit more detail on this issue so we can continue to work towards getting this solved.

AutoCAD Certified Professional

Thanks You
Jayhar.M.J

 

Helpful Links: Prepare your computer for download |  Autodesk Virtual Agent | Clean Uninstall | Steps for Setting-Up Student Software

Please Subscribe YouTube Channel
https://www.youtube.com/channel/UCclj8v9vHQiFa8_DriuAk3w

Please Mark the Post or Posts as Solution(s) to help others find the answer quickly.
0 Likes
Message 8 of 8

cadffm
Consultant
Consultant

@Anonymous

It is simple, just :

command: fastsel

command: erase

thats it.

 

If fastsel is a 'unknown command', you have AutoCAD LT version

 

OR

 

someone forgot to install the expresstools.

try:

command: EXPRESSTOOLS

isn't working?

then windows, programs and feature, <your product> -> change -> select EXPRESS TOOLS for install

 

 

Sebastian