diff base/Window.h @ 821:06c64a1c6785

Merge
author Chris Cannam
date Mon, 08 Jul 2013 14:49:28 +0100
parents 97741fe16205
children 6a94bb528e9d
line wrap: on
line diff
--- a/base/Window.h	Mon Jul 08 14:44:01 2013 +0100
+++ b/base/Window.h	Mon Jul 08 14:49:28 2013 +0100
@@ -41,7 +41,11 @@
 {
 public:
     /**
-     * Construct a windower of the given type.
+     * Construct a windower of the given type and size. 
+     *
+     * Note that the cosine windows are periodic by design, rather
+     * than symmetrical. (A window of size N is equivalent to a
+     * symmetrical window of size N+1 with the final element missing.)
      */
     Window(WindowType type, size_t size) : m_type(type), m_size(size) { encache(); }
     Window(const Window &w) : m_type(w.m_type), m_size(w.m_size) { encache(); }