j_r_sorenson
2009-04-02, 06:16 PM
Bits and pieces of my code:
(setq point1A (getpoint "Specify first source point:"))
(setq point1B (getpoint "Specify first destination point:"))
(setq point2A (getpoint "Specify second source point:"))
(setq point2B (getpoint "Specify second destination point:"))
(setq newobj (entlast))
(command "ALIGN" newobj "" point1A point1B point2A point2B "" N)
....the Align command just will not work for me.
I have verified that I am getting points for 1A, 1B, 2A, & 2B, and that newobj is set to the right object(s).
I have tried a number of small changes; looking for any suggestions.
Thanks.
(setq point1A (getpoint "Specify first source point:"))
(setq point1B (getpoint "Specify first destination point:"))
(setq point2A (getpoint "Specify second source point:"))
(setq point2B (getpoint "Specify second destination point:"))
(setq newobj (entlast))
(command "ALIGN" newobj "" point1A point1B point2A point2B "" N)
....the Align command just will not work for me.
I have verified that I am getting points for 1A, 1B, 2A, & 2B, and that newobj is set to the right object(s).
I have tried a number of small changes; looking for any suggestions.
Thanks.