Adam Wulkiewicz

Results 29 issues of 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: ![example](https://user-images.githubusercontent.com/1226951/87981559-b7e05a80-cad5-11ea-967a-23d81687e9b0.jpg) 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()...

bug

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...

bug

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...

enhancement

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...

enhancement

@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...

enhancement
question
good-first-issue

Geometry develop (1.72.0), with VS2017 x64. ![image](https://user-images.githubusercontent.com/1226951/71935978-78d96000-31a8-11ea-89d0-82bb5f6d8b5f.png) ``` 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...

bug

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...

bug