Lines Matching refs:index
171 VEC3& GetRow(int index) in GetRow()
173 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
174 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
178 const VEC3& GetRow(int index) const in GetRow()
180 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
181 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
185 VEC3 GetColumn(int index) const in GetColumn()
187 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in GetColumn()
189 column.x = this->m[0][index]; in GetColumn()
190 column.y = this->m[1][index]; in GetColumn()
191 column.z = this->m[2][index]; in GetColumn()
196 void SetColumn(int index, const VEC3& column) in SetColumn()
198 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in SetColumn()
199 this->m[0][index] = column.x; in SetColumn()
200 this->m[1][index] = column.y; in SetColumn()
201 this->m[2][index] = column.z; in SetColumn()