0

I want to get all coordinates of a line via ezdxf. I found nothing relevent. I am able to get only starting and ending points but I need all coordinates. Kindly guide.

1 Answers1

0

Once you have the start and the end points of a line segment, you do not need ezdxf to find the points on the line. You can use the Bresenham Algorithm, to get the other points. Check out Bresenham

Anuradha
  • 1,089
  • 4
  • 18
  • 29