Jump to content

Angle reference to a line


Dayananda

Recommended Posts

(setq A (- (angle p1 p3) (angle p1 p2)))
(setq B (+ (* 2.0 PI) (angle p1 p4) (- (angle p1 p2))))

I can not test it right now, but it should work...

  • Thanks 1
Link to comment
Share on other sites

not sure if OP wants to apply dimension?

refer to RHS in the picture, 1 ,2 ,3, B= text position

 

Command: DIMANGULAR

Select arc, circle, line, or <specify vertex>:   <ENTER>

Specify angle vertex:         <--- pick p1 (center)
Specify first angle endpoint: <--- pick p2
Specify second angle endpoint: <--- pick p3 then place B

Non-associative dimension created.

 

or vb method

object.AddDim3PointAngular(AngleVertex, FirstEndPoint, SecondEndPoint, TextPoint)

(apply 'vla-AddDim3PointAngular
       (cons *modelspace*
       (mapcar ''((p) (vlax-3d-point (trans p 1 0)))
	       (list p1 p2 p3 B)
	       )
       )
)

 

  • Like 1
Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...