Lines Matching refs:index
134 VEC3& GetRow(int index) in GetRow()
136 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
137 return *reinterpret_cast<VEC3*>(&this->v[index]); in GetRow()
141 const VEC3& GetRow(int index) const in GetRow()
143 NN_MATH_MINMAXLT_ASSERT(index, 0, ROW_COUNT); in GetRow()
144 return *reinterpret_cast<const VEC3*>(&this->v[index]); in GetRow()
148 VEC4 GetColumn(int index) const in GetColumn()
150 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in GetColumn()
152 column.x = this->m[0][index]; in GetColumn()
153 column.y = this->m[1][index]; in GetColumn()
154 column.z = this->m[2][index]; in GetColumn()
155 column.w = this->m[3][index]; in GetColumn()
160 void SetColumn(int index, const VEC4& column) in SetColumn()
162 NN_MATH_MINMAXLT_ASSERT(index, 0, COLUMN_COUNT); in SetColumn()
163 this->m[0][index] = column.x; in SetColumn()
164 this->m[1][index] = column.y; in SetColumn()
165 this->m[2][index] = column.z; in SetColumn()
166 this->m[3][index] = column.w; in SetColumn()