Lines Matching refs:index
296 VEC3& GetRow(int index) in GetRow() argument
298 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
299 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
303 const VEC3& GetRow(int index) const in GetRow() argument
305 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
306 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
310 VEC2 GetColumn(int index) const in GetColumn() argument
312 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in GetColumn()
314 column.x = this->m[0][index]; in GetColumn()
315 column.y = this->m[1][index]; in GetColumn()
320 void SetColumn(int index, const VEC2& column) in SetColumn() argument
322 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in SetColumn()
323 this->m[0][index] = column.x; in SetColumn()
324 this->m[1][index] = column.y; in SetColumn()