]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/stlplus/matrix.tpp
the massive refactoring effort
[chaz/yoink] / src / Moof / stlplus / matrix.tpp
diff --git a/src/Moof/stlplus/matrix.tpp b/src/Moof/stlplus/matrix.tpp
deleted file mode 100755 (executable)
index 65ec779..0000000
+++ /dev/null
@@ -1,215 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-//   Author:    Andy Rushton\r
-//   Copyright: (c) Southampton University 1999-2004\r
-//              (c) Andy Rushton           2004-2009\r
-//   License:   BSD License, see ../docs/license.html\r
-\r
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-namespace stlplus\r
-{\r
-\r
-  ////////////////////////////////////////////////////////////////////////////////\r
-\r
-  template<typename T>\r
-  matrix<T>::matrix(unsigned rows, unsigned cols, const T& fill) throw()\r
-  {\r
-    m_rows = 0;\r
-    m_cols = 0;\r
-    m_data = 0;\r
-    resize(rows,cols,fill);\r
-  }\r
-\r
-  template<typename T>\r
-  matrix<T>::~matrix(void) throw()\r
-  {\r
-    for (unsigned row = 0; row < m_rows; row++)\r
-      delete[] m_data[row];\r
-    delete[] m_data;\r
-  }\r
-\r
-  template<typename T>\r
-  matrix<T>::matrix(const matrix<T>& r) throw()\r
-  {\r
-    m_rows = 0;\r
-    m_cols = 0;\r
-    m_data = 0;\r
-    *this = r;\r
-  }\r
-\r
-  template<typename T>\r
-  matrix<T>& matrix<T>::operator =(const matrix<T>& right) throw()\r
-  {\r
-    // clear the old values\r
-    for (unsigned row = 0; row < m_rows; row++)\r
-      delete[] m_data[row];\r
-    delete[] m_data;\r
-    m_rows = 0;\r
-    m_cols = 0;\r
-    m_data = 0;\r
-    // now reconstruct with the new\r
-    resize(right.m_rows, right.m_cols);\r
-    for (unsigned row = 0; row < m_rows; row++)\r
-      for (unsigned col = 0; col < m_cols; col++)\r
-        m_data[row][col] = right.m_data[row][col];\r
-    return *this;\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::resize(unsigned rows, unsigned cols, const T& fill) throw()\r
-  {\r
-    // a grid is an array of rows, where each row is an array of T\r
-    // a zero-row or zero-column matrix has a null grid\r
-    // TODO - make this exception-safe - new could throw here and that would cause a memory leak\r
-    T** new_grid = 0;\r
-    if (rows && cols)\r
-    {\r
-      new_grid = new T*[rows];\r
-      for (unsigned row = 0; row < rows; row++)\r
-      {\r
-        new_grid[row] = new T[cols];\r
-        // copy old items to the new grid but only within the bounds of the intersection of the old and new grids\r
-        // fill the rest of the grid with the initial value\r
-        for (unsigned col = 0; col < cols; col++)\r
-          if (row < m_rows && col < m_cols)\r
-            new_grid[row][col] = m_data[row][col];\r
-          else\r
-            new_grid[row][col] = fill;\r
-      }\r
-    }\r
-    // destroy the old grid\r
-    for (unsigned row = 0; row < m_rows; row++)\r
-      delete[] m_data[row];\r
-    delete[] m_data;\r
-    // move the new data into the matrix\r
-    m_data = new_grid;\r
-    m_rows = rows;\r
-    m_cols = cols;\r
-  }\r
-\r
-  template<typename T>\r
-  unsigned matrix<T>::rows(void) const throw()\r
-  {\r
-    return m_rows;\r
-  }\r
-\r
-  template<typename T>\r
-  unsigned matrix<T>::columns(void) const throw()\r
-  {\r
-    return m_cols;\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::erase(const T& fill) throw()\r
-  {\r
-    for (unsigned row = 0; row < m_rows; row++)\r
-      for (unsigned col = 0; col < m_cols; col++)\r
-        insert(row,col,fill);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::erase(unsigned row, unsigned col, const T& fill) throw(std::out_of_range)\r
-  {\r
-    insert(row,col,fill);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::insert(unsigned row, unsigned col, const T& element) throw(std::out_of_range)\r
-  {\r
-    if (row >= m_rows) throw std::out_of_range("matrix::insert row");\r
-    if (col >= m_cols) throw std::out_of_range("matrix::insert col");\r
-    m_data[row][col] = element;\r
-  }\r
-\r
-  template<typename T>\r
-  const T& matrix<T>::item(unsigned row, unsigned col) const throw(std::out_of_range)\r
-  {\r
-    if (row >= m_rows) throw std::out_of_range("matrix::item row");\r
-    if (col >= m_cols) throw std::out_of_range("matrix::item col");\r
-    return m_data[row][col];\r
-  }\r
-\r
-  template<typename T>\r
-  T& matrix<T>::item(unsigned row, unsigned col) throw(std::out_of_range)\r
-  {\r
-    if (row >= m_rows) throw std::out_of_range("matrix::item row");\r
-    if (col >= m_cols) throw std::out_of_range("matrix::item col");\r
-    return m_data[row][col];\r
-  }\r
-\r
-  template<typename T>\r
-  const T& matrix<T>::operator()(unsigned row, unsigned col) const throw(std::out_of_range)\r
-  {\r
-    if (row >= m_rows) throw std::out_of_range("matrix::operator() row");\r
-    if (col >= m_cols) throw std::out_of_range("matrix::operator() col");\r
-    return m_data[row][col];\r
-  }\r
-\r
-  template<typename T>\r
-  T& matrix<T>::operator()(unsigned row, unsigned col) throw(std::out_of_range)\r
-  {\r
-    if (row >= m_rows) throw std::out_of_range("matrix::operator() row");\r
-    if (col >= m_cols) throw std::out_of_range("matrix::operator() col");\r
-    return m_data[row][col];\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::fill(const T& item) throw()\r
-  {\r
-    erase(item);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::fill_column(unsigned col, const T& item) throw (std::out_of_range)\r
-  {\r
-    if (col >= m_cols) throw std::out_of_range("matrix::fill_column");\r
-    for (unsigned row = 0; row < m_rows; row++)\r
-      insert(row, col, item);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::fill_row(unsigned row, const T& item) throw (std::out_of_range)\r
-  {\r
-    if (row >= m_rows) throw std::out_of_range("matrix::fill_row");\r
-    for (unsigned col = 0; col < m_cols; col++)\r
-      insert(row, col, item);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::fill_leading_diagonal(const T& item) throw()\r
-  {\r
-    for (unsigned i = 0; i < m_cols && i < m_rows; i++)\r
-      insert(i, i, item);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::fill_trailing_diagonal(const T& item) throw()\r
-  {\r
-    for (unsigned i = 0; i < m_cols && i < m_rows; i++)\r
-      insert(i, m_cols-i-1, item);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::make_identity(const T& one, const T& zero) throw()\r
-  {\r
-    fill(zero);\r
-    fill_leading_diagonal(one);\r
-  }\r
-\r
-  template<typename T>\r
-  void matrix<T>::transpose(void) throw()\r
-  {\r
-    // no gain in manipulating this, since building a new matrix is no less efficient\r
-    matrix<T> transposed(columns(), rows());\r
-    for (unsigned row = 0; row < rows(); row++)\r
-      for (unsigned col = 0; col < columns(); col++)\r
-        transposed.insert(col,row,item(row,col));\r
-    // TODO - avoid an extra copy by swapping the member data here\r
-    *this = transposed;\r
-  }\r
-\r
-  ////////////////////////////////////////////////////////////////////////////////\r
-\r
-} // end namespace stlplus\r
-\r
This page took 0.022389 seconds and 4 git commands to generate.