MTEXT & DTEXT

Using mtext, dtext: when drawings are set up with 0deg to the north and rotation clockwise, the default rotation value causes MTEXT to be inserted vertical (0 deg) and DTEXT to be inserted vertical (180 deg).To set the drawing up we use the folloning commands in the startup lisp:(setvar "angbase" (* 3(/ pi 2)))(setvar "angdir" 1)We use the same setup in AutoCAD with no problems but we have to use:(setvar "angbase" (/ pi 2))(setvar "angdir" 1)With these settings MTEXT & DTEXT in AutoCAD are both inserted horizontal.