Endpoints of drawline()

18 views (last 30 days)
azhao
azhao on 11 Jul 2020
Commented: dpb on 12 Jul 2020
Hi all,
I'm trying to record the endpoints of the drawline() function in an array so I could record the distance. Is there a way to do this? Or is there a better way to draw a line and record the endpoints' coordinates/ calculate the distance between the endpoints?
Thanks!
  6 Comments
dpb
dpb on 12 Jul 2020
I grok that if search local installed doc, but in the online search as well? That truly sucks if they've done that on purpose.
dpb
dpb on 12 Jul 2020
Well, I don't know why didn't yesterday; today it did return the function reference...maybe something was momentarily offline yesterday when got the failure...

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 12 Jul 2020
h = drawline();
ep = h.Position;
x1 = ep(1,1); y1 = ep(1,2); x2 = ep(2,1); y2 = ep(2,2);

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!