mat.h | 219 // column_builder<> stores the matrix and knows which column to set 221 struct column_builder { struct in class:android::mat 223 column_builder(mat& matrix) : matrix(matrix) { } function in struct:android::mat::column_builder 226 // operator << is not a method of column_builder<> so we can 229 // we just set the column and return the next column_builder<> 231 friend column_builder<PREV_COLUMN+1> operator << ( 232 const column_builder<PREV_COLUMN>& lhs, 235 return column_builder<PREV_COLUMN+1>(lhs.matrix); 241 const column_builder<C-2>& lhs, 247 // return the next column_builder<> [all...] |