• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

oriente point marks

Archipeppo

Guest
Hello everyone,
I'm new to the forum and especially the cad programs, so I don't even know if I'm in the right section and I'm sorry. I need your help if possible. as seen from the image, I have points and as you can see the cross of points is oriented according to the x axes and y. how do I rotate it so as to have it along x and z?
thanks to all in advance:smile:Autocad.webp
 
the representation of the points depends on the uct in use at the time of their insertion.
 
Thank you very much! Unfortunately I had already tried to create my ucs but I always have the drawing plan on x,y. I don't know why he doesn't move it to me.
 
proof questo lisp...
Code:
(defun c:ppp ( / points n)
(vl-load-com)
(if (and
(princ "\nselezionare i punti da oriente \"frontally\":")
(setq points (ssget '(0 . "point")))))
)
(repeat (ssslength points)
(vlax-put
(vlax-ename->vla-object (ssname points (setq n (1-n)))))
'normal'
(0.0 -1.0 6.12323e-017)
)
)
)
(princ)
)
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top