Merged Boost.Geometry from revision 71123 to 71336

[SVN r71339]
This commit is contained in:
Barend Gehrels
2011-04-16 23:24:35 +00:00
parent 5a25db7b35
commit ac0807a26f
104 changed files with 2045 additions and 2496 deletions

View File

@@ -79,9 +79,9 @@ int main(void)
// points can be created using "make" and added to a linestring using the std:: "push_back"
ls.push_back(make<point_2d>(1.1, 1.1));
// points can also be assigned using "assign" and added to a linestring using "append"
// points can also be assigned using "assign_values" and added to a linestring using "append"
point_2d lp;
assign(lp, 2.5, 2.1);
assign_values(lp, 2.5, 2.1);
append(ls, lp);
// Lines can be streamed using DSV (delimiter separated values)