Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Basics)
(Boost Graph Library (BGL))
Line 58: Line 58:
 
=== Wish List ===
 
=== Wish List ===
 
Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.
 
Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.
 +
 +
== Boost (Generic) Geometry Library ==
 +
* [[CPP/Boost/Geometry/DistanceBetweenPoints|Compute the distance between two points]]
 +
* [[CPP/Boost/Geometry/PointInPolygon|Determine if a point is inside of a polygon (within() function)]]

Revision as of 15:14, 29 July 2011

The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.

Boost Graph Library (BGL)

Basics

I/O

Algorithms

Visualization

Wish List

Examples in this section are either shells or something is wrong with them that must be fixed before they can graduate into real examples.

Boost (Generic) Geometry Library