I have a polygon object that I wish to discretize.
e.g.
points0 = {{0, 0}, {1, 2}, {1, 0}, {0, 0}}
DiscretizeRegion[Line[points0]]
My goal is to increase the number of points between the edges using internal Mathematica functions. I have tried using Polygon, BoundaryDiscretize reigion and other functions but can't seem to get just the edge meshed. Any help would be greatly appreciated.




DiscretizeRegion[Line[points0], MaxCellMeasure -> {"Length" -> .1}]? $\endgroup$