Lines Matching refs:index
186 VEC2& GetRow(int index) in GetRow() argument
188 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
189 return *reinterpret_cast<VEC2*>(&this->v[index]); in GetRow()
193 const VEC2& GetRow(int index) const in GetRow() argument
195 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
196 return *reinterpret_cast<const VEC2*>(&this->v[index]); in GetRow()
200 VEC2 GetColumn(int index) const in GetColumn() argument
202 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in GetColumn()
204 column.x = this->m[0][index]; in GetColumn()
205 column.y = this->m[1][index]; in GetColumn()
210 void SetColumn(int index, const VEC2& column) in SetColumn() argument
212 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in SetColumn()
213 this->m[0][index] = column.x; in SetColumn()
214 this->m[1][index] = column.y; in SetColumn()