Add ordinate dimension to linear dimension automatically

Add ordinate dimension to linear dimension automatically

accounts
Explorer Explorer
614 Views
3 Replies
Message 1 of 4

Add ordinate dimension to linear dimension automatically

accounts
Explorer
Explorer

Hi All,

 

I am searching for a lisp that can do things as below:

1. set origin for linear and ordinate

2. continuously dimension the points I want with linear and ordinate dimension at same time.

 

the result I want to achieve would be like this: 

accounts_0-1621302925681.png

 

 

Thanks in advance

0 Likes
615 Views
3 Replies
Replies (3)
Message 2 of 4

accounts
Explorer
Explorer

ADDITIONAL

 

If the ordinate dimension can be added without jog that will be great.

0 Likes
Message 3 of 4

ВeekeeCZ
Consultant
Consultant

Like this using QDIM?

 

(defun c:QD ( / s)
  (if (setq s (ssget))
    (command-s "_.qdim" s "" "_p" pause "_o"))
  (princ)
  )

 

0 Likes
Message 4 of 4

accounts
Explorer
Explorer

the result is similar, but not the same. I want to continuously dimension things point by point, not by selected geometry.

 

0 Likes