wimal Posted December 18, 2011 Author Posted December 18, 2011 How do you know the association no.for the text is 40 how can we find out other association nos like text rotation, Block rotations ect.. Quote
Tharwat Posted December 18, 2011 Posted December 18, 2011 Text and Block rotation angles must be supported in radians . '(50 . 0.0) Quote
Lee Mac Posted December 18, 2011 Posted December 18, 2011 Wimal, I think these links will help you: http://www.cadtutor.net/forum/showpost.php?p=258390&postcount=20 http://docs.autodesk.com/ACD/2011/ENU/filesDXF/WSfacf1429558a55de185c428100849a0ab7-5df0.htm Quote
wimal Posted December 19, 2011 Author Posted December 19, 2011 Thanks, These links are very usefull Quote
wimal Posted December 25, 2011 Author Posted December 25, 2011 This ...? (defun c:TesT (/ sc ss i sn) ;;; Tharwat 13. Dec. 2011 ;;; (if (and (setq sc (getdist "\n Specify Scale factor :")) (setq ss (ssget "_:L" '((0 . "INSERT") (2 . "dot")))) ) (progn (repeat (setq i (sslength ss)) (setq sn (ssname ss (setq i (1- i)))) (command "_.scale" sn "" (cdr (assoc 10 (entget sn))) sc) ) (sssetfirst nil ss) ) (princ) ) (princ) ) This code is working properly with decimal (mm) units. But when I use with imperial ( feet & inches) the selected objects are moving far away Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.