Updated changelog

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@1229 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2015-02-24 11:17:49 +00:00
parent e8053753b1
commit c7a41edafd
2 changed files with 6 additions and 5 deletions

View File

@@ -6,12 +6,16 @@
<!-- --------------------------------------------------------------------- --> <!-- --------------------------------------------------------------------- -->
<tr valign=top><td><b>3.4</b> (?/?/?,Rev.1222)</td><td> <tr valign=top><td><b>3.4</b> (?/?/?,Rev.1228)</td><td>
<b>Core</b> <b>Core</b>
<ul> <ul>
<li>Fixed crash when writing with multiple threads to mostream. closes #2293 (Note: This fix is only active with C++11 support) </li> <li>Fixed crash when writing with multiple threads to mostream. closes #2293 (Note: This fix is only active with C++11 support) </li>
<li>fix "relink failed" condition closes #1244. This patch fixes a rare condition in add_face, where a non-manifold configuration could be created. </li> <li>fix "relink failed" condition closes #1244. This patch fixes a rare condition in add_face, where a non-manifold configuration could be created. </li>
<li>Fixed the problem that the end iterator could become valid again if it was incremented.</li>
<li>Decrementing the start iterator will return an invalid iterator now (Maybe we can implement reverse iterators)</li>
<li>Removed one check from the circulator iterations, which should result in faster execution of is_valid().</li>
<li>Added CW and CCW Circulators</li>
</ul> </ul>
<b>IO</b> <b>IO</b>
@@ -32,6 +36,7 @@
<b>Documentation</b> <b>Documentation</b>
<ul> <ul>
<li>Example for locking vertices in decimater</li>
<li>Added extra hint about status flags when collapsing edges</li> <li>Added extra hint about status flags when collapsing edges</li>
<li>updated tutorial on reading and writing meshes with python bindings</li> <li>updated tutorial on reading and writing meshes with python bindings</li>
</ul> </ul>

View File

@@ -903,10 +903,6 @@ this will lead to unpredictable behaviour. Using skipping iterators for iteratin
the elements and creating circulators from them is safe as they don't contain the elements and creating circulators from them is safe as they don't contain
deleted elements. deleted elements.
\code
\endcode
\section it_circs_h How to use circulators in OpenMesh \section it_circs_h How to use circulators in OpenMesh
The following code example now shows how to enumerate the 1-ring of each vertex: The following code example now shows how to enumerate the 1-ring of each vertex: