StephanThank you for your consideration.May I humbly bump this...I have a standanlone cpp file attached for your convenience but it's really just those lines...
On Tue, Dec 9, 2014 at 11:17 AM, Stephan Menzel <stephan.menzel@gmail.com> wrote:
LineString ret;// LineString raw is being filledHello,I am trying to port existing and working code from 1.54 to above and ever since 1.55 there's a compile error on both gcc and VC9 here:
typedef boost::geometry::model::point<double, 3, boost::geometry::cs::cartesian> Point;
typedef boost::geometry::model::box<Point> BoundingBox;
typedef boost::geometry::model::segment<Point> Segment;
typedef boost::geometry::model::linestring<Point> LineString;
typedef boost::geometry::strategy::distance::projected_point<Point> PointSegmentDistanceStrategy;
typedef boost::geometry::strategy::simplify::douglas_peucker<Point, PointSegmentDistanceStrategy> SimplificationStrategy;
SimplificationStrategy strat;
boost::geometry::simplify<LineString, double, SimplificationStrategy>(raw, ret, 20, strat);