Nate242
Mechanical
- Feb 14, 2005
- 25
Ok, I am trying to place some linear dimensions in my lisp program, and everything works fine until it has to set the dimension position. My code looks like this:
(setvar "CLAYER" "T")
(command "DIMSTYLE" "R" "standard")
(setvar "DIMDEC" 3)
(setvar "DIMATFIT" 3)
(setvar "DIMUPT" 1)
(setvar "DIMTIX" 1)
(command "dimlinear" pt8 pt10 "V" (polar (polar pt14 UP 0.75) RT 1.25))
The dimension shows up on screen waiting for the text location, which I thought I specified. Is there some other system variable I need to change for this to work, or is one of the ones I have set messing me up?
(setvar "CLAYER" "T")
(command "DIMSTYLE" "R" "standard")
(setvar "DIMDEC" 3)
(setvar "DIMATFIT" 3)
(setvar "DIMUPT" 1)
(setvar "DIMTIX" 1)
(command "dimlinear" pt8 pt10 "V" (polar (polar pt14 UP 0.75) RT 1.25))
The dimension shows up on screen waiting for the text location, which I thought I specified. Is there some other system variable I need to change for this to work, or is one of the ones I have set messing me up?