Math Lib: rename fill_*, to copy_*

matching convention for fixed length api, eg: copy_v3_fl
This commit is contained in:
2015-05-05 17:08:29 +10:00
parent ea5f9fee8d
commit e5e73ccc90
27 changed files with 70 additions and 70 deletions

View File

@@ -1858,7 +1858,7 @@ static PyObject *Matrix_zero(MatrixObject *self)
if (BaseMath_Prepare_ForWrite(self) == -1)
return NULL;
fill_vn_fl(self->matrix, self->num_col * self->num_row, 0.0f);
copy_vn_fl(self->matrix, self->num_col * self->num_row, 0.0f);
if (BaseMath_WriteCallback(self) == -1)
return NULL;