diff --git a/Doc/Doxyfile b/Doc/Doxyfile
index cc0e1db2..2bdd3f0c 100644
--- a/Doc/Doxyfile
+++ b/Doc/Doxyfile
@@ -225,7 +225,7 @@ EXTENSION_MAPPING =
# func(std::string) {}). This also make the inheritance and collaboration
# diagrams that involve STL classes more complete and accurate.
-BUILTIN_STL_SUPPORT = NO
+BUILTIN_STL_SUPPORT = YES
# If you use Microsoft's C++/CLI language, you should set this option to YES to
# enable parsing support.
diff --git a/Doc/mesh.docu b/Doc/mesh.docu
index 781e26a5..dbb6a7bc 100644
--- a/Doc/mesh.docu
+++ b/Doc/mesh.docu
@@ -67,18 +67,20 @@ The goals/features of the C++ implementation are:
- Choose suitable types for scalars and coordinates (e.g. float,
double, exact arithmetic and two-, three-, or n-dimensional
- points).
+ points).
- Enhance each item type by your own attributes/properties, like
e.g. adding a normal vector or a \c FaceHandle to class \c
- Vertex.
+ Vertex.
+
Efficiency:
- - Avoid the overhead of virtual inheritance and virtual function calls.
+
- Avoid the overhead of virtual inheritance and virtual function calls.
- Resolve as many type/attribute dependencies as possible at
compile-time instead of testing for attributes at run-time
- (e.g. normal vectors for faces).
+ (e.g. normal vectors for faces).
+
Type-safety for handles, no type-casting (*): Vertices,
(Half-)Edges, Faces know each other and their corresponding
handles.
@@ -89,7 +91,7 @@ The goals/features of the C++ implementation are:
Though under the hood void pointers are used, the casting is done
within the mesh, and the user transparently uses his handles as before.
As soon as the compiler adheres to the C++ standard the type-safe version
- will be restored.
+ will be restored.
*/
@@ -798,7 +800,9 @@ To make use of these constant circulators just add the prefix
"Const" to the type specifier and add the prefix "c" to the function used to request
the circulator of an item. Example:
-ConstVertexVertexIter cvvit = mesh.cvv_iter(some_vertex_handle);
+\code
+ConstVertexVertexIter cvvit = mesh.cvv_iter(some_vertex_handle);
+\endcode
The following code example now shows how to enumerate the 1-ring of each vertex: