[ARITHMETIC OPERATORS][IMPLEMENTATION] implmeented the binary and compound / operator

This commit is contained in:
kallore 2025-05-19 10:28:10 +02:00
parent 12b867e1c9
commit ee3197a0a6
3 changed files with 20 additions and 0 deletions

View file

@ -119,4 +119,10 @@ namespace rotgen
storage_->data *= s;
return *this;
}
matrix_impl64& matrix_impl64::operator/=(double s)
{
storage_->data /= s;
return *this;
}
}