[ARITHMETIC OPERATORS][IMPLEMENTATION] implmeented the binary and compound / operator
This commit is contained in:
parent
12b867e1c9
commit
ee3197a0a6
3 changed files with 20 additions and 0 deletions
|
|
@ -119,4 +119,10 @@ namespace rotgen
|
|||
storage_->data *= s;
|
||||
return *this;
|
||||
}
|
||||
|
||||
matrix_impl64& matrix_impl64::operator/=(double s)
|
||||
{
|
||||
storage_->data /= s;
|
||||
return *this;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue