Lines Matching refs:index
212 VEC3& GetRow(int index) in GetRow() argument
214 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
215 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
219 const VEC3& GetRow(int index) const in GetRow() argument
221 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
222 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
226 VEC3 GetColumn(int index) const in GetColumn() argument
228 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in GetColumn()
230 column.x = this->m[0][index]; in GetColumn()
231 column.y = this->m[1][index]; in GetColumn()
232 column.z = this->m[2][index]; in GetColumn()
237 void SetColumn(int index, const VEC3& column) in SetColumn() argument
239 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in SetColumn()
240 this->m[0][index] = column.x; in SetColumn()
241 this->m[1][index] = column.y; in SetColumn()
242 this->m[2][index] = column.z; in SetColumn()