I have some polyline feature objects in python. Now I want to get all the points of polylines.
For example, if a polyline has start point [0,0] end point [5,5]. Result: [1,1];[2,2];[3,3];[4,4];[5,5].
I want to find all the integer points on that line including end points. For straight line...