Community
AutoCAD Forum
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

join problem

6 REPLIES 6
SOLVED
Reply
Message 1 of 7
mrkaplan
639 Views, 6 Replies

join problem

any idea why arc and lines in the attached file will not join ?

 

pedit join fails both in normal and multiple mode , including activating fuzz and add line option . all points coordinates have z = 0  .

 

6 REPLIES 6
Message 2 of 7
mrkaplan
in reply to: mrkaplan

I suspect pedit will refuse arcs created from a 3d geometry , which is probably the case here .
replacing arcs one by one does work , but i hope theres a quicker way
Message 3 of 7
nestly2
in reply to: mrkaplan

Polylines can exist only in a single plane.  The curved section was apparently created in a different UCS than the straight sections.  LIST command displays the Extrusion direction for that object as

 

Extrusion direction relative to UCS:
                   X=    0.000  Y=    0.000  Z=   -1.000

 

Message 4 of 7
mrkaplan
in reply to: nestly2

strange that a 2d object has an extrusion direction . i still think it has to do with 3d to 2d conversion . 

that will have to be modified in a routine , since it does not appear in properties or quickproperties.

thanks.

 

Message 5 of 7
SEANT61
in reply to: mrkaplan

It is available via the Filter command.  With that, perhaps the pertinent objects can be selected and Mirror3D'd (delete source object = Yes) 


************************************************************
May your cursor always snap to the location intended.
Message 6 of 7
mrkaplan
in reply to: SEANT61

seant61 thanks  . I found this small routine  which uses that command

It will select all objects with a Z=-1 extrusion and 3d mirror them .  

 

 

 

(defun c:swap (/ f1 )

(setq f1 (ssget "_x" '((210 0.0 0.0 -1.0))))
(if
(/= f1 nil)
(command "_mirror3d" f1 "" "_xy" "0,0,0" "_y")
)
(setq f1 nil)

(princ)
)

 

Message 7 of 7
SEANT61
in reply to: mrkaplan

That looks perfect.


************************************************************
May your cursor always snap to the location intended.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost