diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index d08a17a8..6a39de53 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -8,7 +8,7 @@
-
| 2.1 (?/?/?,Rev.514) |
+ |
| 2.1 (2012/01/24,Rev.530) |
Core
@@ -37,12 +37,14 @@
- STL Reader: Add empty mesh when reading empty stl file (don't fail as this is still a valid file)
- PLY Reader: Support vertex normals (Thanks to Bruno Dutailly)
- PlY Writer: vertex normal support (Thanks to Bruno Dutailly)
+- PLY Writer: Fixed output of colors
- OBJ Reader: support for vertex colors after vertices or Vertex colors as separate lines. (Thanks to Bruno Dutailly)
- OBJ Reader: Handle objs without faces(Thanks to Bruno Dutailly)
- Added trim functions to BaseReader
Decimater
+
- Added preprocess collapse function
- Added decimate_to_faces function (Decimating to a target face count)
- Added Hausdorff Distance module
@@ -50,6 +52,13 @@
- Added aspect ratio module
+Subdivider
+
+- Modified base class to support fixed positions on already existing vertices
+- Added LongestEdge subdivider (Always split the currently longest edge, until a maximal edge length on the mesh is reached)
+- Updated Loop subdivider for the fixed vertex positions
+
+
Unittests
- Enabled unittests for windows
diff --git a/README b/README
index 01b18ef7..baa7b39d 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-OpenMesh, 2-0-2
+OpenMesh, 2-1-0
~~~~~~~~~~~~~~~
0. Licence
|