Search the Community
Showing results for tags 'dimlinear'.
-
I want to do a dimension since the P4 P9, like in the image 2, but I wrote like you can see below and the dimension its going up(like in image 1) , I want it to go to the right! Please help, what i am doing wrong? (and (vl-cmdf "_DIMLINEAR" p4 p9 (mapcar '+ p9 (list 0.15 0.45 )) ) ) (princ) )
-
looking for Linear footage lisp base on dimlineaer text
bogeymen77 posted a topic in AutoLISP, Visual LISP & DCL
i'm would like to ba able to calculate the sum of linear footage base on the dimlinear text (in linear inch) of multiple line. i already working with a lisp base on the line (i choose the line instead of the dimlinear text) it work good but to keep our work base on all the same technique i need to be able to choose the dimlinear text. thank you- 3 replies
-
- linear foot
- dimlinear
-
(and 1 more)
Tagged with:
-
Create a line with Corresponding Dimension
ivanfrancis posted a topic in AutoLISP, Visual LISP & DCL
Hi, I was wondering if i could use two commands, line and dimlinear, in a single lisp file. this one i have measures a line you set with two points and creates a line that is a 1/3 in length of the distance between the two points. I want to add dimension line that will be 500 units above the created line. Any help would be very much appreciated. Thank you in advance. (defun c:aa () (setq po1 (getpoint "Pick first point:") po2 (getpoint po1 "Pick second point:") le (/ (distance po1 po2) 3) po3 (polar po1 (angle po1 po2) le)) (entmake (list '(0 . "LINE") (cons 10 po1) (cons 11 po3))) )