Showing posts with label view. Show all posts
Showing posts with label view. Show all posts

Friday, March 9, 2012

CHSPACE issue

Carlson 2012, Intellicad 7.1.1617.51099.p
two viewports, one at twisted view, one true north. Change space of text out of true north, it comes into paperspace twisted to the angle of the other viewport.


Thursday, February 9, 2012

Align PS to MS

I found this tid bit online on a forum, it doesn't work with Intellicad, but I am sure some Intellicad guru can re-write it

(defun c:alignps ( / )
(setvar "cmdecho" 0)
(setq oldexpert (getvar "expert"))
(setvar "expert" 4)
(setq pms (getpoint "\nPoint in MS: "))
(command "_pspace")
(setq pps (getpoint "\nPoint in PS: "))
(command "_mspace")
(setq pms2 (trans pps 1 0))
(setq pms2 (trans (trans pms2 3 2) 2 1))
(command "_pan" pms pms2)
(setvar "expert" oldexpert)
)