Adam Wulkiewicz
Adam Wulkiewicz
The `[MMS]` notification is shown in message thread of the correct number - Add PDU WAP Push MMS Notification parser - Use it in ServiceCellular to parse the raw message...
Some time ago I played with Boost.Compute and wrote a program simulating diffusion reaction as described here: http://www.karlsims.com/rd.html. Here it how it looks like:  Currently GLUT library is used...
To reproduce (polygon's point order doesn't matter): ``` namespace bg = boost::geometry; namespace bgm = boost::geometry::model; using cpt_t = bgm::point; using cpo_t = bgm::polygon; using cmpo_t = bgm::multi_polygon; int main()...
This is the list of failures I get right now with msvc-14.1 (VS2017) ``` b2 toolset=msvc-14.1 --abbreviate-paths cxxflags="\wd4244 \wd4996" -j4 test ``` test\algorithms\detail\algorithms_approximately_equals ``` test/algorithms/detail/approximately_equals.cpp(75): error: in "test_main_caller( argc_ argv...
The algorithms: - `convex_hull_insert` - `intersection_insert` - `difference_insert` - `simplify_insert` - `sym_difference_insert` - `union_insert` The main reason is that they take nonintuitive parameters, e.g. `intersection_insert` takes OutputIterator and in addition...
This is a followup of a discussion about umbrella strategies from this PR: https://github.com/boostorg/geometry/pull/708 and a comment (from somewhere else?) which I'm unable to find right now. THE PROBLEM I'd...
@barendgehrels @mloskot @vissarion What do you think about including all Boost.Geometry models by default in `geometry.hpp`? Internally we already use some of them anyway and the users are confused that...
Geometry develop (1.72.0), with VS2017 x64.  ``` typedef bg::model::point point; typedef bg::model::linestring linestring; typedef bg::model::polygon polygon; typedef bg::model::multi_linestring multi_linestring; typedef bg::model::multi_polygon multi_polygon; multi_polygon mpo{ { { {0, 0}, {0,...
@barendgehrels I've noticed that some operations became inconsistent after recent changes in set operations (with VS2015, msvc-14.0, x86). Consider: ``` red = POLYGON((5 0,7 10,0 15,10 15,15 25,20 15,30 15,22...
Recently added Karney's formulas take and return coordinates and azimuth in degrees while other formulas take them and return them in radians. This behavior was inherited from the original implementation...