Is there a java function that takes a linestring (com.vividsolutions.jts.geom.LineString) and a number of segment and returns all the point of the new segments. The goal is to simulate several points that represents houses at fixed distance, for a given street
example : split that line into 5 seggments :
|-----|----------|---------------|
should give :
|------|------|------|------|-----|
Thanks