Lines Matching refs:index
261 VEC4& GetRow(int index) in GetRow()
263 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
264 return *reinterpret_cast<VEC4*>(&this->v[index]); in GetRow()
268 const VEC4& GetRow(int index) const in GetRow()
270 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
271 return *reinterpret_cast<const VEC4*>(&this->v[index]); in GetRow()
275 VEC3 GetColumn(int index) const in GetColumn()
277 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in GetColumn()
279 column.x = this->m[0][index]; in GetColumn()
280 column.y = this->m[1][index]; in GetColumn()
281 column.z = this->m[2][index]; in GetColumn()
286 void SetColumn(int index, const VEC3& column) in SetColumn()
288 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in SetColumn()
289 this->m[0][index] = column.x; in SetColumn()
290 this->m[1][index] = column.y; in SetColumn()
291 this->m[2][index] = column.z; in SetColumn()