Rotates an object about an arbitrary 3D axis
Supported Platforms: Windows and Mac OS
Prerequisites: The Geom3d ObjectARX application must be loaded before the function can be called, (arxload "geom3d").
The following example rotates the selected objects 30 degrees about the axis specified by points p1 and p2.
(setq ss (ssget)) (setq p1 (getpoint "\nPoint1: ")) (setq p2 (getpoint "\nPoint2: ")) (rotate3d ss p1 p2 30)
AutoLISP support for the rotate3d function is implemented with the use of the SAGET library.